Commit 3516576
Add retry logic for transient HTTP errors in markdown link checker
Configure markdown-link-check to retry on transient server errors (500, 502, 503, 504)
in addition to rate limit errors (429). This prevents CI failures from flaky external
links that temporarily return 502 Bad Gateway or similar intermittent errors.
Changes:
- Increase retryCount from 3 to 5 for better resilience
- Add explicit retry configuration with 10-second delays between attempts
- Configure retries for HTTP status codes: 429, 500, 502, 503, 504
This should resolve the flaky test failures where external links like
https://github.com/shakacode/react_on_rails_demo_ssr_hmr occasionally return 502 errors.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent 7825688 commit 3516576
1 file changed
+7
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
46 | | - | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
47 | 52 | | |
0 commit comments