summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2013-08-26 05:18:19 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2013-08-26 05:18:19 +0000
commit96f1562808fc5d2f0598c453de70b25f02ab462f (patch)
tree4df0c34183a1d66599f7be2d34f18bce98cce10b
parent64587892afe11d985e2afdfc3a0e71cd8e96c18d (diff)
Change curl-get utility to display error message instead of aborting on error.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1517424 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-cpp/trunk/modules/http/curl-get.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/http/curl-get.cpp b/sca-cpp/trunk/modules/http/curl-get.cpp
index 983dd20fc5..96efcc7897 100644
--- a/sca-cpp/trunk/modules/http/curl-get.cpp
+++ b/sca-cpp/trunk/modules/http/curl-get.cpp
@@ -35,7 +35,9 @@ namespace http {
const bool testGet(const string& url, const string& ca = "", const string& cert = "", const string& key = "") {
const CURLSession ch(ca, cert, key, "", 0);
const failable<value> val = get(url, ch);
- assert(hasContent(val));
+ if(!hasContent(val))
+ cerr << reason(val) << endl;
+ else
cout << content(val) << endl;
return true;
}