From 355673ae8f58f8fcc3661f32b706d79e75fac6da Mon Sep 17 00:00:00 2001 From: eeintech Date: Thu, 2 Jun 2022 13:53:52 -0400 Subject: [PATCH] Increase server request timeout to 10s --- inventree/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inventree/api.py b/inventree/api.py index d3f78388..2df6da99 100644 --- a/inventree/api.py +++ b/inventree/api.py @@ -226,7 +226,7 @@ def request(self, url, **kwargs): headers=headers, json=json, files=files, - timeout=2.5, + timeout=10, ) except Exception as e: # Re-thrown any caught errors, and add a message to the log