From e1c50ecc7be6e9854de78216928d2b5a77689bb1 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Tue, 19 May 2015 13:09:43 -0400 Subject: [PATCH] Squash urllib3 warnings to see if it helps with SAAS-714 --- .../airtime_analyzer/airtime_analyzer/status_reporter.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python_apps/airtime_analyzer/airtime_analyzer/status_reporter.py b/python_apps/airtime_analyzer/airtime_analyzer/status_reporter.py index 63c859d05..4f357c3db 100644 --- a/python_apps/airtime_analyzer/airtime_analyzer/status_reporter.py +++ b/python_apps/airtime_analyzer/airtime_analyzer/status_reporter.py @@ -9,6 +9,8 @@ import pickle import threading from urlparse import urlparse +requests.packages.urllib3.disable_warnings() + class PicklableHttpRequest: def __init__(self, method, url, data, api_key): self.method = method