Skip to content

Commit

Permalink
fix(titus): increase retry backoff to 13 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaslin committed Mar 7, 2017
1 parent 8cc962e commit 881ccda
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -157,7 +157,7 @@ private <T> T execute(String requestName, Call<T> call) {
.withTag("responseCode", Optional.ofNullable(responseCode).map(Object::toString).orElse("UNKNOWN"));
registry.timer(timerId).record(System.nanoTime() - startTime, TimeUnit.NANOSECONDS);
}
}, 100, 8 );
}, 100, 13 );
}

@Override
Expand Down

0 comments on commit 881ccda

Please sign in to comment.