summaryrefslogtreecommitdiff
path: root/glanceclient/common
diff options
context:
space:
mode:
authorErno Kuvaja <jokke@usr.fi>2020-07-13 22:35:15 +0100
committerErno Kuvaja <jokke@usr.fi>2020-07-13 22:55:23 +0100
commitbae1d89cc767949fc61cef63dcacec200a2c236a (patch)
treef1c326598f65b9d81dfac472864ca21eb3b7bbf3 /glanceclient/common
parentde178ac4382716cc93022be06b93697936e816fc (diff)
downloadpython-glanceclient-bae1d89cc767949fc61cef63dcacec200a2c236a.tar.gz
Pass Global Request ID on with session client
Closes-bug: #1886650 Change-Id: I3a08c1beb398ba9f2556b6779c925f679bdc2c49
Diffstat (limited to 'glanceclient/common')
-rw-r--r--glanceclient/common/http.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/glanceclient/common/http.py b/glanceclient/common/http.py
index 6973f60..247b92d 100644
--- a/glanceclient/common/http.py
+++ b/glanceclient/common/http.py
@@ -352,7 +352,6 @@ class SessionClient(adapter.Adapter, _BaseHTTPClient):
def __init__(self, session, **kwargs):
kwargs.setdefault('user_agent', USER_AGENT)
kwargs.setdefault('service_type', 'image')
- self.global_request_id = kwargs.pop('global_request_id', None)
super(SessionClient, self).__init__(session, **kwargs)
def request(self, url, method, **kwargs):