Merge "Curl statements to include globoff for IPv6 URLs"

This commit is contained in:
Jenkins
2015-01-08 14:58:41 +00:00
committed by Gerrit Code Review

View File

@@ -94,7 +94,7 @@ class HTTPClient(object):
return netutils.urlsplit(endpoint)
def log_curl_request(self, method, url, headers, data, kwargs):
curl = ['curl -i -X %s' % method]
curl = ['curl -g -i -X %s' % method]
headers = copy.deepcopy(headers)
headers.update(self.session.headers)