mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-18 08:36:13 +00:00
ci(link-check): accept HTTP 202 as a live response
The Check documentation links job on PR #320 flagged a link in README.md to eur-lex.europa.eu as dead because the EU legal-content portal responds with HTTP 202 (Accepted) to HEAD requests. 202 is a 2xx success class — the server responded and the link is valid; it just means "the request was accepted and is being processed". Adding 202 alongside 200 / 206 in aliveStatusCodes fixes the false positive broadly, not just for this one URL. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.7
parent
2b48d25e5f
commit
e9565983f8
@@ -3,7 +3,7 @@
|
||||
"retryOn429": true,
|
||||
"retryCount": 3,
|
||||
"fallbackRetryDelay": "30s",
|
||||
"aliveStatusCodes": [200, 206],
|
||||
"aliveStatusCodes": [200, 202, 206],
|
||||
"ignorePatterns": [
|
||||
{
|
||||
"pattern": "^http://localhost"
|
||||
|
||||
Reference in New Issue
Block a user