We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1972689 commit 36ebfd0Copy full SHA for 36ebfd0
1 file changed
java-bigquery/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/telemetry/ErrorTypeUtil.java
@@ -60,7 +60,7 @@ static boolean isClientRequestError(Exception e) {
60
static ErrorType getClientErrorType(Exception e) {
61
if (isClientTimeout(e)) {
62
return ErrorType.CLIENT_TIMEOUT;
63
- } else if (ErrorTypeUtil.isClientConnectionError(e)) {
+ } else if (isClientConnectionError(e)) {
64
return ErrorType.CLIENT_CONNECTION_ERROR;
65
} else if (isClientResponseDecodeError(e)) {
66
return ErrorType.CLIENT_RESPONSE_DECODE_ERROR;
0 commit comments