Skip to content
Snippets Groups Projects

Draft: Hotfix/2.11.1.manual

Closed Mohammad Torkashvand requested to merge hotfix/2.11.1.manual into 2.11
4 files
+ 6
5
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -40,7 +40,7 @@ class LibreNMSClient:
) -> Response:
url = self.base_url + endpoint
logger.debug("LibreNMS - Sending request", extra={"method": method, "endpoint": url, "form_data": data})
result = self.session.request(method, url, json=data, timeout=(0.5, 75))
result = self.session.request(method, url, json=data, timeout=(10, 75))
logger.debug("LibreNMS - Received response", extra=result.__dict__)
return result
Loading