Commit e8a83b5
authored
BUILD-9545 Fix: Remove typo 'I' in jitter calculation (#18)
Fix: Remove typo 'I' in jitter calculation
The jitter calculation had a hardcoded 'I' character that caused bash arithmetic errors:
local jitter=$((RANDOM % 3))I
This resulted in values like '1I' or '2I' which are invalid for arithmetic operations.
Fixed by removing the 'I':
local jitter=$((RANDOM % 3))
This bug prevented proper retry logic and error reporting when OIDC token requests failed.1 parent d92c2ec commit e8a83b5
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| |||
0 commit comments