We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db1c2b5 commit c8a3832Copy full SHA for c8a3832
README.md
@@ -65,9 +65,9 @@ The only required input is `project-name`.
65
When API rate-limiting is hit the back-off time, augmented with jitter, will be
66
added to the next update interval.
67
E.g. with update interval of 30 and back-off time of 15, upon hitting the rate-limit
68
- the next interval for the update call will be 30 + random*between(0, 15 * 2 \*\* 0))
+ the next interval for the update call will be 30 + random_between(0, 15 _ 2 \*\* 0))
69
seconds and if the rate-limit is hit again the next interval will be
70
- 30 + random*between(0, 15 * 2 \*\* 1) and so on.
+ 30 + random_between(0, 15 _ 2 \*\* 1) and so on.
71
72
The default value is 15.
73
0 commit comments