Open mike-fam opened 1 day ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
CI is running/has finished running commands for commit f851a1a5a963c7f6ea86eeb0229768a2e477738c. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.
📂 See all runs for this CI Pipeline Execution
🟥 Failed Commands |
---|
nx documentation --no-dte |
Sent with 💌 from NxCloud.
Fix exponential retries so that it behaves according to the comments.
The current comments and implementation of this exponential backoff are not behaving correctly, causing issues when many (~100) parallel tasks access the same local cache on a Network Drive. I've updated it to have the correct functionality while maintaining the maximum allowable time.
Current Behavior
The current exponential backoff retry logic only allows up to 1364 ms (4 + 4² + 4³ + 4⁴ + 4⁵), while the comment allows up to 20480 ms, albeit with confusing maths.
Expected Behavior
Exponential backoff retry is run correctly with the maximum allowable time of 20480 ms
Related Issue(s)
21926
Fixes #21926