Commit d5bfb01
committed
Fix wrong max retry timeout for exponential backoff again
The patch in #3640 was still wrong, the expected one is
c + c * b^1 + (...) + c*b^k
but the patch was
c + c * b^1 + (...) + c*b^(k-1)
Signed-off-by: Takuro Ashie <[email protected]>1 parent 6927305 commit d5bfb01
File tree
2 files changed
+2
-2
lines changed- lib/fluent/plugin_helper
- test/plugin_helper
2 files changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
158 | 158 | | |
159 | 159 | | |
160 | 160 | | |
161 | | - | |
| 161 | + | |
162 | 162 | | |
163 | 163 | | |
164 | 164 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
413 | 413 | | |
414 | 414 | | |
415 | 415 | | |
416 | | - | |
| 416 | + | |
417 | 417 | | |
418 | 418 | | |
419 | 419 | | |
| |||
0 commit comments