Skip to content

Commit

Permalink
Fix javadoc reference
Browse files Browse the repository at this point in the history
Method is called nextBackOff() and not nextBackOffMillis().

Closes spring-projectsgh-1115
  • Loading branch information
KingBuzzer authored and snicoll committed Jul 18, 2016
1 parent 2029b6e commit d3b051a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* BackOffExecution exec = backOff.start();
*
* // In the operation recovery/retry loop:
* long waitInterval = exec.nextBackOffMillis();
* long waitInterval = exec.nextBackOff();
* if (waitInterval == BackOffExecution.STOP) {
* // do not retry operation
* }
Expand Down

0 comments on commit d3b051a

Please sign in to comment.