Skip to content
Snippets Groups Projects
Commit e50e0550 authored by Cam Saul's avatar Cam Saul
Browse files

cleanup

parent 9be0244b
No related branches found
No related tags found
No related merge requests found
......@@ -63,8 +63,8 @@
;; according to DELAY-EXPONENT.
^Integer initial-delay-ms
;; For each subsequent failure past ATTEMPTS-THRESHOLD, increase the delay by
;; (num-attempts-over-theshold ^ DELAY-EXPONENT). e.g. if `initial-delay-ms` is 15 and
;; `delay-exponent` is 2, the first attempt past attempts-threshold will require the user to wait
;; (num-attempts-over-theshold ^ DELAY-EXPONENT). e.g. if INITIAL-DELAY-MS is 15 and
;; DELAY-EXPONENT is 2, the first attempt past attempts-threshold will require the user to wait
;; 15 seconds (15 * 1^2), the next attempt after that 60 seconds (15 * 2^2), then 135, and so on.
^Integer delay-exponent])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment