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
})), errors.NotFound, 'None Group with id 1234 is not found'),
127
130
(fake_response('GET', 404, json.dumps("This is JSON but not a dictionary")), errors.NotFound,
128
-
'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"```'
129
-
),
131
+
UNABLE_TO_PARSE_RESPONSE_ERROR.format(
132
+
status_code=404, reason='Not Found', response_body='"This is JSON but not a dictionary"')),
'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< �```'
0 commit comments