From 074d6d41e4347bcaa6ce790a5bbbaed92224a497 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 6 Oct 2025 19:53:41 -0500 Subject: [PATCH] MOTOR-1476 Fix linkcheck for JIRA release notes --- doc/conf.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index bbc90206..da062a73 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -73,7 +73,11 @@ # A list of ignored prefixes for module index sorting. # modindex_common_prefix = [] -linkcheck_ignore = [r"http://localhost:\d+"] +# Links to release notes in jira give 401 error: unauthorized. MOTOR-1476 +linkcheck_ignore = [ + r"http://localhost:\d+", + r"https://jira\.mongodb\.org/secure/ReleaseNote\.jspa.*", +] # Allow for flaky links. linkcheck_retries = 3