Skip to content

Commit fdcde0a

Browse files
committed
docs(bigquery): update retry helper comments as suggested
1 parent 337e8b1 commit fdcde0a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2414,7 +2414,7 @@ private static boolean isRetryErrorCodeHttpNotFound(BigQueryRetryHelperException
24142414
}
24152415

24162416
/**
2417-
* Helper to retrieve the retry algorithm wrapped for safe HTTP 5xx error retries.
2417+
* Helper to retrieve the retry algorithm wrapped for HTTP error retries.
24182418
*
24192419
* <p>This delegates to {@link BigQueryRetryHelper#maybeWrapForHttpRetry} to ensure safe
24202420
* conditional wrapping of the default algorithm while leaving custom user algorithms untouched.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ private static <V> V run(
123123

124124
/**
125125
* Conditionally wraps the provided retry algorithm with a wrapper that retries on transient HTTP
126-
* 5xx errors (500, 502, 503, 504).
126+
* errors.
127127
*
128128
* <p>Wrapping only occurs if the provided algorithm is the default {@link
129129
* BigQueryBaseService#DEFAULT_BIGQUERY_EXCEPTION_HANDLER}. Custom user-defined retry algorithms

0 commit comments

Comments
 (0)