We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c65767 commit 2caf04bCopy full SHA for 2caf04b
prestodb/client.py
@@ -413,14 +413,14 @@ def process(self, http_response):
413
414
if constants.HEADER_CLEAR_SESSION in http_response.headers:
415
for prop in get_header_values(
416
- response.headers,
+ http_response.headers,
417
constants.HEADER_CLEAR_SESSION,
418
):
419
self._client_session.properties.pop(prop, None)
420
421
if constants.HEADER_SET_SESSION in http_response.headers:
422
for key, value in get_session_property_values(
423
424
constants.HEADER_SET_SESSION,
425
426
self._client_session.properties[key] = value
0 commit comments