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 d3b85cb commit 5e85700Copy full SHA for 5e85700
databricks/sdk/errors/parser.py
@@ -38,7 +38,9 @@ def _unknown_error(response: requests.Response) -> str:
38
return (
39
'This is likely a bug in the Databricks SDK for Python or the underlying '
40
'API. Please report this issue with the following debugging information to the SDK issue tracker at '
41
- f'https://github.com/databricks/databricks-sdk-go/issues. Request log:```{request_log}```')
+ f'https://github.com/databricks/databricks-sdk-py/issues. Request log:```{request_log}```'
42
+ f' Config: host={response.request.url}, status_code={response.status_code}'
43
+ )
44
45
46
class _Parser:
0 commit comments