File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
main/java/com/databricks/sdk/core/error
test/java/com/databricks/sdk/core Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ private static void normalizeError(ApiErrorBody errorBody) {
6868 // SCIM error handling.
6969 //
7070 // TODO: This code is brittle and should likely be refactored to a more
71- // robust solution to detect SCIM errors. This will likely involve
71+ // robust solution to detect SCIM errors. This will likely involve
7272 // parsing the SCIM error at the API call level rather than normalizing.
7373 if (Strings .isNullOrEmpty (errorBody .getScimDetail ())) {
7474 return ;
Original file line number Diff line number Diff line change @@ -429,7 +429,6 @@ void verifyNoRetryWhenRetriesDisabled() throws IOException {
429429 client .execute (
430430 new Request ("GET" , req .getUri ().getPath ()), MyEndpointResponse .class ));
431431
432- assertEquals ("TOO_MANY_REQUESTS" , exception .getErrorCode ());
433432 assertInstanceOf (TooManyRequests .class , exception );
434433 assertEquals (429 , exception .getStatusCode ());
435434 }
You can’t perform that action at this time.
0 commit comments