Skip to content

Commit

Permalink
Fix stack overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
uschindler committed Jun 28, 2024
1 parent 119dbf5 commit d9cc4d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public int getRetryAfter() {

@Override
public IOException getCause() {
return (IOException) getCause();
return (IOException) super.getCause();
}

private int retryAfter;
Expand Down

0 comments on commit d9cc4d5

Please sign in to comment.