Merge "Support InsecureRequestWarning == None"

This commit is contained in:
Jenkins 2016-03-29 07:57:11 +00:00 committed by Gerrit Code Review
commit 8f4717a255

View File

@ -174,7 +174,9 @@ class OpenStackCloud(object):
self.log.debug(
"Turning off Insecure SSL warnings since verify=False")
category = requestsexceptions.InsecureRequestWarning
warnings.filterwarnings('ignore', category=category)
if category:
# InsecureRequestWarning references a Warning class or is None
warnings.filterwarnings('ignore', category=category)
self._servers = []
self._servers_time = 0