You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix error tracker URL to point to the Python SDK repo (#1462)
## Summary
The "unable to parse response" fallback error now links to the
`databricks-sdk-py` issue tracker instead of `databricks-sdk-go`.
## Why
That message is only emitted by the Python SDK, but it hard-coded the Go
tracker URL, so affected users filed Python issues against the Go repo.
Recent reports there (#1703, #1709, #1710) were Python runs that landed
in the wrong place for this reason.
## How is this tested?
`tests/test_errors.py` passes; the three cases that asserted the old URL
are updated.
NO_CHANGELOG=true
response_body=json.dumps("This is JSON but not a dictionary"),
344
344
),
345
345
want_err_type=errors.NotFound,
346
-
want_message='unable to parse response. This is likely a bug in the Databricks SDK for Python or the underlying API. Please report this issue with the following debugging information to the SDK issue tracker at https://github.com/databricks/databricks-sdk-go/issues. Request log:```GET /api/2.0/service\n< 404 Not Found\n< "This is JSON but not a dictionary"```',
346
+
want_message='unable to parse response. This is likely a bug in the Databricks SDK for Python or the underlying API. Please report this issue with the following debugging information to the SDK issue tracker at https://github.com/databricks/databricks-sdk-py/issues. Request log:```GET /api/2.0/service\n< 404 Not Found\n< "This is JSON but not a dictionary"```',
347
347
),
348
348
TestCase(
349
349
name="unable_to_parse_response3",
@@ -353,7 +353,7 @@ class TestCase:
353
353
response_body=b"\x80",
354
354
),
355
355
want_err_type=errors.NotFound,
356
-
want_message="unable to parse response. This is likely a bug in the Databricks SDK for Python or the underlying API. Please report this issue with the following debugging information to the SDK issue tracker at https://github.com/databricks/databricks-sdk-go/issues. Request log:```GET /api/2.0/service\n< 404 Not Found\n< �```",
356
+
want_message="unable to parse response. This is likely a bug in the Databricks SDK for Python or the underlying API. Please report this issue with the following debugging information to the SDK issue tracker at https://github.com/databricks/databricks-sdk-py/issues. Request log:```GET /api/2.0/service\n< 404 Not Found\n< �```",
0 commit comments