mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-24 01:06:25 -06:00
Add timeout to requests
This commit is contained in:
parent
1837ee6e85
commit
92df670e11
@ -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():
|
||||
|
Loading…
Reference in New Issue
Block a user