aboutsummaryrefslogtreecommitdiffstats
path: root/catalog/pub/Dmaap_lib/dmaap/consumer.py
diff options
context:
space:
mode:
Diffstat (limited to 'catalog/pub/Dmaap_lib/dmaap/consumer.py')
-rw-r--r--catalog/pub/Dmaap_lib/dmaap/consumer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/catalog/pub/Dmaap_lib/dmaap/consumer.py b/catalog/pub/Dmaap_lib/dmaap/consumer.py
index d817b81..d5b5351 100644
--- a/catalog/pub/Dmaap_lib/dmaap/consumer.py
+++ b/catalog/pub/Dmaap_lib/dmaap/consumer.py
@@ -23,6 +23,7 @@ import requests
from catalog.pub.Dmaap_lib.pub.exceptions import DmaapClientException
+requests.packages.urllib3.disable_warnings()
logger = logging.getLogger(__name__)
@@ -75,7 +76,7 @@ class ConsumerClient:
url = self.create_url()
if self.api_key:
headers = self.create_headers()
- ret = requests.get(url=url, headers=headers)
+ ret = requests.get(url=url, headers=headers, verify=False)
else:
ret = requests.get(url)
logger.info("Status code is %s, detail is %s.", ret.status_code, ret.json())