File tree Expand file tree Collapse file tree
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments