From e8d68077259a6059b14925df645f1fc48f6332bb Mon Sep 17 00:00:00 2001 From: Bram Date: Tue, 5 Aug 2025 13:14:41 +0200 Subject: [PATCH] enable skip cache --- Dockers/puppeteer-healthcheck/healthcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockers/puppeteer-healthcheck/healthcheck.py b/Dockers/puppeteer-healthcheck/healthcheck.py index 78ad9ba..433fad2 100644 --- a/Dockers/puppeteer-healthcheck/healthcheck.py +++ b/Dockers/puppeteer-healthcheck/healthcheck.py @@ -94,7 +94,7 @@ class PuppeteerHealthcheck: # Construct the URL with the test URL as a parameter base_url = f"http://{host}:8000" encoded_test_url = quote(self.test_url, safe='') - url = f"{base_url}/?url={encoded_test_url}" + url = f"{base_url}/?url={encoded_test_url}&skipCache=true" headers = { 'x-api-key': self.api_key,