Skip to content

Commit cac352c

Browse files
authored
chore(ci): treat HTTP 429 as "found" for linkcheck (#4016)
Modifies the configuration of the dead link checker so that it does not fail when HTTP 429 is returned (too many requests). This should alleviate some of the spuriously failing builds we have been seeing. Signed-off-by: Eric Chlebek <echlebek@sumologic.com>
1 parent bf22c2d commit cac352c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.markdown_link_check.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@
1818
{
1919
"pattern": "^https://stackoverflow.com/"
2020
}
21-
]
21+
],
22+
"aliveStatusCodes": [200, 206, 300, 301, 302, 303, 304, 307, 308, 429]
2223
}

0 commit comments

Comments
 (0)