Skip to content

Commit

Permalink
[hotfix] Fix ErrorUtilsTest
Browse files Browse the repository at this point in the history
Signed-off-by: PengFei Li <[email protected]>
  • Loading branch information
banmoy committed Sep 3, 2023
1 parent 89fdaea commit 1acc6d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static boolean isRetryable(Throwable e) {
}

if (!RESULT_STATUS_FAILED.equalsIgnoreCase(responseBody.getStatus())
|| !RESULT_STATUS_INTERNAL_ERROR.equalsIgnoreCase(responseBody.getStatus())) {
&& !RESULT_STATUS_INTERNAL_ERROR.equalsIgnoreCase(responseBody.getStatus())) {
return false;
}

Expand Down

0 comments on commit 1acc6d2

Please sign in to comment.