From fe79abf00844a5a9041cc115f1ce9e4a29478eaf Mon Sep 17 00:00:00 2001 From: Josh Berry Date: Mon, 27 Oct 2025 13:58:11 -0400 Subject: [PATCH] Fix incorrect URL in error message - Changed databricks-sdk-go to databricks-sdk-py in parser.py line 46 - This fixes the issue tracker URL to point to the correct Python SDK repository --- databricks/sdk/errors/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databricks/sdk/errors/parser.py b/databricks/sdk/errors/parser.py index 2fefc4e2f..f0b8ee5de 100644 --- a/databricks/sdk/errors/parser.py +++ b/databricks/sdk/errors/parser.py @@ -43,7 +43,7 @@ def _unknown_error(response: requests.Response, debug_headers: bool = False) -> return ( "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 " - 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}```" )