Add timeout to requests

This commit is contained in:
Robert Chacón 2023-03-22 15:44:31 -06:00 committed by GitHub
parent 1837ee6e85
commit 92df670e11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ def uispRequest(target):
from ispConfig import UISPbaseURL, uispAuthToken from ispConfig import UISPbaseURL, uispAuthToken
url = UISPbaseURL + "/nms/api/v2.1/" + target url = UISPbaseURL + "/nms/api/v2.1/" + target
headers = {'accept': 'application/json', 'x-auth-token': uispAuthToken} 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() return r.json()
def buildFlatGraph(): def buildFlatGraph():