Skip to content

Commit

Permalink
PI-1478 changes to retry exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
stevomcallister committed Sep 21, 2023
1 parent 97b4765 commit 3a8f9a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fun <T> retry(
}
if (throwable == null) {
TimeUnit.MILLISECONDS.sleep(delay.toMillis() * count * count)
}else{
} else {
throw throwable!!
}
}
Expand Down

0 comments on commit 3a8f9a9

Please sign in to comment.