Closed obscurecat64 closed 4 months ago
Fixes #283
This fix ensures that lastRequestTime accurately reflects the timing of each retry.
lastRequestTime
The lastRequestTime value was always set to the original request time.
This bug was introduced during the TypeScript migration (v3.9.1 -> v4.0).
Verified that the lastRequestTime value now correctly updates with each retry attempt, after the fix. All test cases remain passing.
thanks a lot @obscurecat64
thank you @obscurecat64
Fixes #283
This fix ensures that
lastRequestTime
accurately reflects the timing of each retry.Issue
The
lastRequestTime
value was always set to the original request time.Root Cause
This bug was introduced during the TypeScript migration (v3.9.1 -> v4.0).
Changes
lastRequestTime
to remain static.Verification
Verified that the
lastRequestTime
value now correctly updates with each retry attempt, after the fix. All test cases remain passing.