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 547d55b commit f305198Copy full SHA for f305198
src/databricks/sql/auth/thrift_http_client.py
@@ -192,12 +192,14 @@ def flush(self):
192
timeout=self.__timeout,
193
retries=self.retry_policy,
194
)
195
-
+
196
# Get reply to flush the request
197
self.code = self.__resp.status
198
self.message = self.__resp.reason
199
self.headers = self.__resp.headers
200
201
+ logger.info("HTTP Response with status code {}, message: {}".format(self.code, self.message))
202
203
@staticmethod
204
def basic_proxy_auth_headers(proxy):
205
if proxy is None or not proxy.username:
0 commit comments