X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osmclient%2Fsol005%2Fhttp.py;fp=osmclient%2Fsol005%2Fhttp.py;h=b73789483b095ba84b01a49abde5110671bf43ec;hb=8081c9e7ea5a57e7e632132a35e7443fe8f642cf;hp=d130879e990d8206e14f5874d1b2ba57d433ecbc;hpb=076bc55bec62aae951a01ff2b1ebbd62cd6f21da;p=osm%2Fosmclient.git diff --git a/osmclient/sol005/http.py b/osmclient/sol005/http.py index d130879..b737894 100644 --- a/osmclient/sol005/http.py +++ b/osmclient/sol005/http.py @@ -24,6 +24,7 @@ from osmclient.common.exceptions import OsmHttpException, NotFound class Http(http.Http): + TIMEOUT = 10 def __init__(self, url, user='admin', password='admin', **kwargs): self._url = url @@ -63,6 +64,7 @@ class Http(http.Http): curl_cmd.setopt(pycurl.VERBOSE, True) if not skip_query_admin: endpoint = self._complete_endpoint(endpoint) + curl_cmd.setopt(pycurl.TIMEOUT, self.TIMEOUT) curl_cmd.setopt(pycurl.URL, self._url + endpoint) curl_cmd.setopt(pycurl.SSL_VERIFYPEER, 0) curl_cmd.setopt(pycurl.SSL_VERIFYHOST, 0)