Skip to content

Commit

Permalink
Make some fields static
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike DeCosta authored and Mike DeCosta committed May 14, 2018
1 parent 6ce307a commit 1501b59
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -16,8 +16,8 @@ public class MablRestApiClientRetryHandler implements ServiceUnavailableRetryStr
SC_NOT_IMPLEMENTED,
SC_BAD_GATEWAY
));
private final int maxRetries = 5;
private final long retryInterval = 1000L;
private static final int maxRetries = 5;
private static final long retryInterval = 1000L;

@Override
public boolean retryRequest(HttpResponse response, int executionCount, HttpContext context) {
Expand Down

0 comments on commit 1501b59

Please sign in to comment.