@cryptotaxi247 / CoPilot / commits / b4ad78f9

Increase timeout for POST requests to 10 seconds

taylorwalton committed Sep 2, 2025 at 10:49 UTC b4ad78f9f7bb51afbec2cdd8a922903347a2381f
1 file changed +1
backend/app/middleware/license.py
+1
@@ -948,6 +948,7 @@ async def send_post_request(endpoint: str, data: Dict[str, Any] = None) -> Dict[
948 headers=HEADERS,
949 json=data,
950 verify=False,
951 + timeout=10,
952 )
953
954 if response.status_code == 204: