-
-
Notifications
You must be signed in to change notification settings - Fork 280
Closed
Labels
Description
Python: 3.8.0
httpretty: 0.9.7
What I tried:
import httpretty
import requests
httpretty.register_uri(httpretty.GET, 'http://fakeuri.com:8080', body='{"hello":"world"}')
req = requests.get('http://fakeuri.com:8080')
What I expected:
req.status = 200
req.json() ={"hello":"world"}
What I got:
Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 600, in urlopen
chunked=chunked)
File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 354, in _make_request
conn.request(method, url, **httplib_request_kw)
File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
self._send_request(method, url, body, headers, encode_chunked)
File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
self.send(msg)
File "/usr/local/lib/python3.6/http/client.py", line 986, in send
self.sock.sendall(data)
File "/usr/local/lib/python3.6/site-packages/httpretty/core.py", line 554, in sendall
self.real_sendall(data)
File "/usr/local/lib/python3.6/site-packages/httpretty/core.py", line 474, in real_sendall
sock.connect(self._address)
TimeoutError: [Errno 110] Connection timed out
gabrielfalcao