File tree Expand file tree Collapse file tree
java-bigquery/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 @@ -128,7 +128,7 @@ private static <V> V run(
128128 bigQueryRetryConfig ); // using BigQueryRetryAlgorithm in place of
129129 // com.google.api.gax.retrying.RetryAlgorithm, as
130130 // BigQueryRetryAlgorithm retries considering bigQueryRetryConfig
131- RetryingExecutor <V > executor = new DirectRetryingExecutor <>(retryAlgorithm );
131+ DirectRetryingExecutor <V > executor = new DirectRetryingExecutor <>(retryAlgorithm );
132132
133133 // 1. Resolve method name for the tracer span
134134 String methodName = "execute" ;
@@ -175,7 +175,7 @@ public Set<StatusCode.Code> getRetryableCodes() {
175175 });
176176 }
177177
178- RetryingFuture <V > retryingFuture = executor .createFuture (callable );
178+ RetryingFuture <V > retryingFuture = executor .createFuture (callable , context );
179179 executor .submit (retryingFuture );
180180 return retryingFuture .get ();
181181 }
You can’t perform that action at this time.
0 commit comments