mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
Upgrade httplib2 to 0.9
This commit is contained in:
parent
d413618288
commit
6a7cb5a4e7
@ -27,7 +27,7 @@ djangorestframework==2.3.13 (rest_framework/*)
|
|||||||
django-qsstats-magic==0.7.2 (django-qsstats-magic/*, minor fix in qsstats/__init__.py)
|
django-qsstats-magic==0.7.2 (django-qsstats-magic/*, minor fix in qsstats/__init__.py)
|
||||||
gevent-socketio==0.3.6 (socketio/*)
|
gevent-socketio==0.3.6 (socketio/*)
|
||||||
gevent-websocket==0.9.3 (geventwebsocket/*)
|
gevent-websocket==0.9.3 (geventwebsocket/*)
|
||||||
httplib2==0.8 (httplib2/*)
|
httplib2==0.9 (httplib2/*)
|
||||||
importlib==1.0.3 (importlib/*, needed for Python 2.6 support)
|
importlib==1.0.3 (importlib/*, needed for Python 2.6 support)
|
||||||
iso8601==0.1.10 (iso8601/*)
|
iso8601==0.1.10 (iso8601/*)
|
||||||
keyring==3.7 (keyring/*, excluded bin/keyring)
|
keyring==3.7 (keyring/*, excluded bin/keyring)
|
||||||
|
@ -22,7 +22,7 @@ __contributors__ = ["Thomas Broyer (t.broyer@ltgt.net)",
|
|||||||
"Sam Ruby",
|
"Sam Ruby",
|
||||||
"Louis Nyffenegger"]
|
"Louis Nyffenegger"]
|
||||||
__license__ = "MIT"
|
__license__ = "MIT"
|
||||||
__version__ = "0.8"
|
__version__ = "0.9"
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
@ -1082,7 +1082,9 @@ try:
|
|||||||
def _new_fixed_fetch(validate_certificate):
|
def _new_fixed_fetch(validate_certificate):
|
||||||
def fixed_fetch(url, payload=None, method="GET", headers={},
|
def fixed_fetch(url, payload=None, method="GET", headers={},
|
||||||
allow_truncated=False, follow_redirects=True,
|
allow_truncated=False, follow_redirects=True,
|
||||||
deadline=5):
|
deadline=None):
|
||||||
|
if deadline is None:
|
||||||
|
deadline = socket.getdefaulttimeout() or 5
|
||||||
return fetch(url, payload=payload, method=method, headers=headers,
|
return fetch(url, payload=payload, method=method, headers=headers,
|
||||||
allow_truncated=allow_truncated,
|
allow_truncated=allow_truncated,
|
||||||
follow_redirects=follow_redirects, deadline=deadline,
|
follow_redirects=follow_redirects, deadline=deadline,
|
||||||
@ -1246,7 +1248,10 @@ class Http(object):
|
|||||||
self.authorizations = []
|
self.authorizations = []
|
||||||
|
|
||||||
def _conn_request(self, conn, request_uri, method, body, headers):
|
def _conn_request(self, conn, request_uri, method, body, headers):
|
||||||
for i in range(RETRIES):
|
i = 0
|
||||||
|
seen_bad_status_line = False
|
||||||
|
while i < RETRIES:
|
||||||
|
i += 1
|
||||||
try:
|
try:
|
||||||
if hasattr(conn, 'sock') and conn.sock is None:
|
if hasattr(conn, 'sock') and conn.sock is None:
|
||||||
conn.connect()
|
conn.connect()
|
||||||
@ -1284,6 +1289,19 @@ class Http(object):
|
|||||||
continue
|
continue
|
||||||
try:
|
try:
|
||||||
response = conn.getresponse()
|
response = conn.getresponse()
|
||||||
|
except httplib.BadStatusLine:
|
||||||
|
# If we get a BadStatusLine on the first try then that means
|
||||||
|
# the connection just went stale, so retry regardless of the
|
||||||
|
# number of RETRIES set.
|
||||||
|
if not seen_bad_status_line and i == 1:
|
||||||
|
i = 0
|
||||||
|
seen_bad_status_line = True
|
||||||
|
conn.close()
|
||||||
|
conn.connect()
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
conn.close()
|
||||||
|
raise
|
||||||
except (socket.error, httplib.HTTPException):
|
except (socket.error, httplib.HTTPException):
|
||||||
if i < RETRIES-1:
|
if i < RETRIES-1:
|
||||||
conn.close()
|
conn.close()
|
||||||
@ -1364,7 +1382,10 @@ class Http(object):
|
|||||||
if response.status in [302, 303]:
|
if response.status in [302, 303]:
|
||||||
redirect_method = "GET"
|
redirect_method = "GET"
|
||||||
body = None
|
body = None
|
||||||
(response, content) = self.request(location, redirect_method, body=body, headers = headers, redirections = redirections - 1)
|
(response, content) = self.request(
|
||||||
|
location, method=redirect_method,
|
||||||
|
body=body, headers=headers,
|
||||||
|
redirections=redirections - 1)
|
||||||
response.previous = old_response
|
response.previous = old_response
|
||||||
else:
|
else:
|
||||||
raise RedirectLimit("Redirected more times than rediection_limit allows.", response, content)
|
raise RedirectLimit("Redirected more times than rediection_limit allows.", response, content)
|
||||||
@ -1506,7 +1527,9 @@ class Http(object):
|
|||||||
# Should cached permanent redirects be counted in our redirection count? For now, yes.
|
# Should cached permanent redirects be counted in our redirection count? For now, yes.
|
||||||
if redirections <= 0:
|
if redirections <= 0:
|
||||||
raise RedirectLimit("Redirected more times than rediection_limit allows.", {}, "")
|
raise RedirectLimit("Redirected more times than rediection_limit allows.", {}, "")
|
||||||
(response, new_content) = self.request(info['-x-permanent-redirect-url'], "GET", headers = headers, redirections = redirections - 1)
|
(response, new_content) = self.request(
|
||||||
|
info['-x-permanent-redirect-url'], method='GET',
|
||||||
|
headers=headers, redirections=redirections - 1)
|
||||||
response.previous = Response(info)
|
response.previous = Response(info)
|
||||||
response.previous.fromcache = True
|
response.previous.fromcache = True
|
||||||
else:
|
else:
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user