Skip to content

Commit 1038508

Browse files
Format
1 parent 95c0d23 commit 1038508

File tree

1 file changed

+3
-3
lines changed
  • databricks-sdk-java/src/main/java/com/databricks/sdk/core

1 file changed

+3
-3
lines changed

databricks-sdk-java/src/main/java/com/databricks/sdk/core/ApiClient.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,17 +240,17 @@ private Response executeInner(Request in, String path, RequestOptions options) {
240240

241241
Response response;
242242
DatabricksError databricksError;
243-
243+
244244
try {
245245
response = httpClient.execute(in);
246246
if (LOG.isDebugEnabled()) {
247247
LOG.debug(makeLogRecord(in, response));
248248
}
249-
249+
250250
if (isResponseSuccessful(response)) {
251251
return response; // stop here if the request succeeded
252252
}
253-
253+
254254
// The request did not succeed. Though, some errors are retriable and
255255
// should be retried with exponential backoff.
256256
databricksError = ApiErrors.getDatabricksError(response);

0 commit comments

Comments
 (0)