Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 22b1706

Browse files
committed
Changed DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG to DEFAULT_RETRY_CONFIG
1 parent 68c06e2 commit 22b1706

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigQueryImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ public Page<FieldValueList> getNextPage() {
237237
}
238238

239239
private final BigQueryRpc bigQueryRpc;
240-
private static final BigQueryRetryConfig DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG =
240+
private static final BigQueryRetryConfig DEFAULT_RETRY_CONFIG =
241241
BigQueryRetryConfig.newBuilder()
242242
.retryOnMessage(BigQueryErrorMessages.RATE_LIMIT_EXCEEDED_MSG)
243243
.build(); // retry config with Error Message for RateLimitExceeded Error
@@ -1285,7 +1285,7 @@ public com.google.api.services.bigquery.model.QueryResponse call() {
12851285
getOptions().getRetrySettings(),
12861286
BigQueryBaseService.BIGQUERY_EXCEPTION_HANDLER,
12871287
getOptions().getClock(),
1288-
DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG);
1288+
DEFAULT_RETRY_CONFIG);
12891289
} catch (BigQueryRetryHelper.BigQueryRetryHelperException e) {
12901290
throw BigQueryException.translateAndThrow(e);
12911291
}
@@ -1383,7 +1383,7 @@ public GetQueryResultsResponse call() {
13831383
serviceOptions.getRetrySettings(),
13841384
BigQueryBaseService.BIGQUERY_EXCEPTION_HANDLER,
13851385
serviceOptions.getClock(),
1386-
DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG);
1386+
DEFAULT_RETRY_CONFIG);
13871387

13881388
TableSchema schemaPb = results.getSchema();
13891389

0 commit comments

Comments
 (0)