Skip to content

Commit ccc2b47

Browse files
authored
Fix for flaky sites during lychee md link checker (#485)
`retry_count` is not a valid configuration: https://lychee.cli.rs/guides/config/ Signed-off-by: Pierangelo Di Pilato <pierdipi@redhat.com>
1 parent cd7f004 commit ccc2b47

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.lychee.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ exclude = [
77
timeout = 20
88

99
# Retry failed links (helpful for flaky sites)
10-
retry_count = 3
10+
max_retries = 5
11+
retry_wait_time = 2
1112

1213
# Accept non-200 status codes (429: rate limits)
1314
accept = [200, 429]

0 commit comments

Comments
 (0)