Skip to content

Commit 34f0427

Browse files
authored
Allow users to override handleResponse on HttpBackOffUnsuccessfulResponseHandler (#560)
1 parent 052f178 commit 34f0427

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google-http-client/src/main/java/com/google/api/client/http/HttpBackOffUnsuccessfulResponseHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public HttpBackOffUnsuccessfulResponseHandler setSleeper(Sleeper sleeper) {
136136
* {@link Sleeper#sleep(long)} will be made.
137137
* </p>
138138
*/
139-
public final boolean handleResponse(
139+
public boolean handleResponse(
140140
HttpRequest request, HttpResponse response, boolean supportsRetry) throws IOException {
141141
if (!supportsRetry) {
142142
return false;

0 commit comments

Comments
 (0)