Missing kid verify timeout handle

This commit is contained in:
Luciano Gervasoni
2025-07-07 16:51:55 +02:00
parent 8cf2b52325
commit dd8e71aaa3
2 changed files with 7 additions and 3 deletions

View File

@@ -293,7 +293,7 @@ class DB_Handler():
missingkids_fetch_endpoint = os.path.join(os.getenv("SELENIUM_ENDPOINT", "http://localhost:80"), "verify_missing_kid/")
data = {"url": obj_url.url}
# POST
r = requests.post(missingkids_fetch_endpoint, json=data, timeout=30)
r = requests.post(missingkids_fetch_endpoint, json=data, timeout=120)
# Jsonify
results = r.json()