aboutsummaryrefslogtreecommitdiffstats
path: root/onap-client/onap_client/client/request.py
diff options
context:
space:
mode:
authorstark, steven <steven.stark@att.com>2021-05-12 14:21:33 -0700
committerstark, steven <steven.stark@att.com>2021-05-12 14:22:09 -0700
commita1a5fc7377a9150cc15c2d3006d9d19b73551c50 (patch)
tree50852133bc5119366c834a981da01c1787cd7c69 /onap-client/onap_client/client/request.py
parent7530353e6ad1839f74af4c361b5215d68d78e0c7 (diff)
[VVP] Adding timeout for requests
Issue-ID: VVP-535 Signed-off-by: stark, steven <steven.stark@att.com> Change-Id: Ic8c0401b2be3782d417d20ce1c5b6ac948f396df
Diffstat (limited to 'onap-client/onap_client/client/request.py')
-rw-r--r--onap-client/onap_client/client/request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/onap-client/onap_client/client/request.py b/onap-client/onap_client/client/request.py
index eb65b56..fe96b16 100644
--- a/onap-client/onap_client/client/request.py
+++ b/onap-client/onap_client/client/request.py
@@ -126,7 +126,7 @@ class Request:
http.mount("https://", adapter)
http.mount("http://", adapter)
- return http.request(**self.kwargs, verify=verify)
+ return http.request(**self.kwargs, verify=verify, timeout=(6.05, 60))
class APICatalogRequestObject: