Jun 29 - Update app name, and documents

This commit is contained in:
2026-06-29 16:51:40 -04:00
parent 26ae7c0cb7
commit 176e19213c
32 changed files with 156 additions and 261 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ def health_check(website_id):
try:
t0 = time.time()
resp = _http_req.head(url, timeout=6, allow_redirects=True,
headers={"User-Agent": "WebsiteChecker/1.0 (health-check)"})
headers={"User-Agent": "BidChecker/1.0 (health-check)"})
ms = int((time.time() - t0) * 1000)
ok = resp.status_code < 400
return jsonify({"status": "ok" if ok else "error", "ms": ms})