CentOS7 box with python2.7 (I KNOW, I'm working on it RIGHT NOW).
On VERY rare occasions, my code gets an exception passed up through your library:
File "/usr/lib/python2.7/site-packages/duo_client/auth.py", line 29, in check
return self.json_api_call('GET', '/auth/v2/check', {})
File "/usr/lib/python2.7/site-packages/duo_client/client.py", line 382, in json_api_call
(response, data) = self.api_call(method, path, params)
File "/usr/lib/python2.7/site-packages/duo_client/client.py", line 269, in api_call
return self._make_request(method, uri, body, encoded_headers)
File "/usr/lib/python2.7/site-packages/duo_client/client.py", line 338, in _make_request
conn, method, uri, body, headers)
File "/usr/lib/python2.7/site-packages/duo_client/client.py", line 351, in _attempt_single_request
response = conn.getresponse()
File "/usr/lib64/python2.7/httplib.py", line 1128, in getresponse
response.begin()
File "/usr/lib64/python2.7/httplib.py", line 453, in begin
version, status, reason = self._read_status()
File "/usr/lib64/python2.7/httplib.py", line 417, in _read_status
raise BadStatusLine(line)
BadStatusLine: ''
I'd say, in 6 months, I've gotten about 4 of these (out of thousands of positive responses). I imagine it's a web burp in production.
This is mostly a question of "is this YOUR problem or MINE?" I see there's very few uses of try in the library, and none around conn.getresponse(), so I'm unsure if you consider it a design feature that your library is propagating httplib exceptions up to users' code, or if I've hit a super rare edge that you would handle, but nobody ran across in development.
Thanks!
CentOS7 box with python2.7 (I KNOW, I'm working on it RIGHT NOW).
On VERY rare occasions, my code gets an exception passed up through your library:
I'd say, in 6 months, I've gotten about 4 of these (out of thousands of positive responses). I imagine it's a web burp in production.
This is mostly a question of "is this YOUR problem or MINE?" I see there's very few uses of
tryin the library, and none aroundconn.getresponse(), so I'm unsure if you consider it a design feature that your library is propagating httplib exceptions up to users' code, or if I've hit a super rare edge that you would handle, but nobody ran across in development.Thanks!