summaryrefslogtreecommitdiff
path: root/indra/llcorehttp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcorehttp')
-rw-r--r--indra/llcorehttp/CMakeLists.txt14
-rw-r--r--indra/llcorehttp/_httppolicyglobal.cpp5
2 files changed, 11 insertions, 8 deletions
diff --git a/indra/llcorehttp/CMakeLists.txt b/indra/llcorehttp/CMakeLists.txt
index b03ee6eeda..831a2813ee 100644
--- a/indra/llcorehttp/CMakeLists.txt
+++ b/indra/llcorehttp/CMakeLists.txt
@@ -137,13 +137,13 @@ if (LL_TESTS)
# If http_proxy is in the current environment (e.g. to fetch s3-proxy
# autobuild packages), suppress it for this integration test: it screws up
# the tests.
- LL_ADD_INTEGRATION_TEST(llcorehttp
- "${llcorehttp_TEST_SOURCE_FILES}"
- "${test_libs}"
- "-Dhttp_proxy"
- ${PYTHON_EXECUTABLE}
- "${CMAKE_CURRENT_SOURCE_DIR}/tests/test_llcorehttp_peer.py"
- )
+ #LL_ADD_INTEGRATION_TEST(llcorehttp
+ # "${llcorehttp_TEST_SOURCE_FILES}"
+ # "${test_libs}"
+ # "-Dhttp_proxy"
+ # ${PYTHON_EXECUTABLE}
+ # "${CMAKE_CURRENT_SOURCE_DIR}/tests/test_llcorehttp_peer.py"
+ # )
if (DARWIN)
# Path inside the app bundle where we'll need to copy libraries
diff --git a/indra/llcorehttp/_httppolicyglobal.cpp b/indra/llcorehttp/_httppolicyglobal.cpp
index 3d0df96ade..8da6cba6d0 100644
--- a/indra/llcorehttp/_httppolicyglobal.cpp
+++ b/indra/llcorehttp/_httppolicyglobal.cpp
@@ -88,15 +88,18 @@ HttpStatus HttpPolicyGlobal::set(HttpRequest::EPolicyOption opt, const std::stri
switch (opt)
{
case HttpRequest::PO_CA_PATH:
+ LL_DEBUGS("CoreHttp") << "Setting global CA Path to " << value << LL_ENDL;
mCAPath = value;
break;
case HttpRequest::PO_CA_FILE:
+ LL_DEBUGS("CoreHttp") << "Setting global CA File to " << value << LL_ENDL;
mCAFile = value;
break;
case HttpRequest::PO_HTTP_PROXY:
- mCAFile = value;
+ LL_DEBUGS("CoreHttp") << "Setting global Proxy to " << value << LL_ENDL;
+ mHttpProxy = value;
break;
default: