diff --git a/old/v1.3/integrationUISP.py b/old/v1.3/integrationUISP.py index 32cdeced..b3f67fc4 100644 --- a/old/v1.3/integrationUISP.py +++ b/old/v1.3/integrationUISP.py @@ -11,7 +11,7 @@ def uispRequest(target): from ispConfig import UISPbaseURL, uispAuthToken url = UISPbaseURL + "/nms/api/v2.1/" + target headers = {'accept': 'application/json', 'x-auth-token': uispAuthToken} - r = requests.get(url, headers=headers) + r = requests.get(url, headers=headers, timeout=10) return r.json() def buildFlatGraph():