auth: increased timeout in auth

This commit is contained in:
2026-06-15 14:09:52 +02:00
parent 051df0321c
commit c913477a2b
+1 -1
View File
@@ -27,7 +27,7 @@ def auth(base_url: str | None, cert_path: str | None) -> str:
['curl', '-s', '--cacert', cacert, '--negotiate', '-u', ':', url, "-XPOST"],
capture_output=True,
text=True,
timeout=18.0,
timeout=120.0,
)
except subprocess.TimeoutExpired as e:
logger.error(f"Token request curl timed out: {e}")