From 713c01c1a34117575ed00872d4e27d020b29ffe6 Mon Sep 17 00:00:00 2001 From: Christopher Tauchen Date: Wed, 4 Mar 2026 19:00:13 +0000 Subject: [PATCH] Skip dead OpenStack review link in link checker The review.openstack.org link returns 503 and is failing Netlify CI builds. Add it to the crawler skip list as a temporary exception. Co-Authored-By: Claude Opus 4.6 --- __tests__/crawler.test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/__tests__/crawler.test.js b/__tests__/crawler.test.js index 19ca294334..79a455ecdd 100644 --- a/__tests__/crawler.test.js +++ b/__tests__/crawler.test.js @@ -201,7 +201,8 @@ test('Crawl the docs and execute tests', async () => { 'https://calico-docs.mcp.kapa.ai', 'https://docs.tigera.io/img/calico-logo-2026-badge.png', 'http://www.w3.org/2000/svg', // Appears in SVG file 'xmlns', doesn't need checking - 'https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html' // TEMP + 'https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html', // TEMP + 'https://review.openstack.org/#/c/344008/' // TEMP: dead link (503) ]; const lc = linkChecker();