diff options
| author | Jenkins <jenkins@review.openstack.org> | 2015-01-08 14:58:41 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2015-01-08 14:58:41 +0000 |
| commit | dac71b4be941e529238cc6bbd6d2ef50bb1adc47 (patch) | |
| tree | edcfed039d08816b847ee648362adceadd56ab1b | |
| parent | df02ee8e2a10d2f37a9c013dec157c88b8dce49d (diff) | |
| parent | 465c5cef8d23dcd5400fdfb1aae6d7155c0d44a6 (diff) | |
| download | python-glanceclient-dac71b4be941e529238cc6bbd6d2ef50bb1adc47.tar.gz | |
Merge "Curl statements to include globoff for IPv6 URLs"
| -rw-r--r-- | glanceclient/common/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glanceclient/common/http.py b/glanceclient/common/http.py index 16d0993..a2ade22 100644 --- a/glanceclient/common/http.py +++ b/glanceclient/common/http.py @@ -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) |
