Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. Traceback (most recent call last):
  2. File "/usr/lib/python3/dist-packages/urllib3/connection.py", line 137, in _new_conn
  3. (self.host, self.port), self.timeout, **extra_kw)
  4. File "/usr/lib/python3/dist-packages/urllib3/util/connection.py", line 91, in create_connection
  5. raise err
  6. File "/usr/lib/python3/dist-packages/urllib3/util/connection.py", line 81, in create_connection
  7. sock.connect(sa)
  8. ConnectionRefusedError: [Errno 111] Connection refused
  9.  
  10. During handling of the above exception, another exception occurred:
  11.  
  12. Traceback (most recent call last):
  13. File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 560, in urlopen
  14. body=body, headers=headers)
  15. File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 354, in _make_request
  16. conn.request(method, url, **httplib_request_kw)
  17. File "/usr/lib/python3.5/http/client.py", line 1106, in request
  18. self._send_request(method, url, body, headers)
  19. File "/usr/lib/python3.5/http/client.py", line 1151, in _send_request
  20. self.endheaders(body)
  21. File "/usr/lib/python3.5/http/client.py", line 1102, in endheaders
  22. self._send_output(message_body)
  23. File "/usr/lib/python3.5/http/client.py", line 934, in _send_output
  24. self.send(msg)
  25. File "/usr/lib/python3.5/http/client.py", line 877, in send
  26. self.connect()
  27. File "/usr/lib/python3/dist-packages/urllib3/connection.py", line 162, in connect
  28. conn = self._new_conn()
  29. File "/usr/lib/python3/dist-packages/urllib3/connection.py", line 146, in _new_conn
  30. self, "Failed to establish a new connection: %s" % e)
  31. requests.packages.urllib3.exceptions.NewConnectionError: <requests.packages.urllib3.connection.HTTPConnection object at 0x7f34963fce48>: Failed to establish a new connection: [Errno 111] Connection refused
  32.  
  33. During handling of the above exception, another exception occurred:
  34.  
  35. Traceback (most recent call last):
  36. File "/usr/lib/python3/dist-packages/requests/adapters.py", line 376, in send
  37. timeout=timeout
  38. File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 610, in urlopen
  39. _stacktrace=sys.exc_info()[2])
  40. File "/usr/lib/python3/dist-packages/urllib3/util/retry.py", line 273, in increment
  41. raise MaxRetryError(_pool, url, error or ResponseError(cause))
  42. requests.packages.urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='192.168.4.200', port=8000): Max retries exceeded with url: /socket.io/1/?t=1515005416627 (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f34963fce48>: Failed to establish a new connection: [Errno 111] Connection refused',))
  43.  
  44. During handling of the above exception, another exception occurred:
  45.  
  46. Traceback (most recent call last):
  47. File "debug_tv.py", line 48, in <module>
  48. websocket_response = requests.get(step4_url)
  49. File "/usr/lib/python3/dist-packages/requests/api.py", line 67, in get
  50. return request('get', url, params=params, **kwargs)
  51. File "/usr/lib/python3/dist-packages/requests/api.py", line 53, in request
  52. return session.request(method=method, url=url, **kwargs)
  53. File "/usr/lib/python3/dist-packages/requests/sessions.py", line 468, in request
  54. resp = self.send(prep, **send_kwargs)
  55. File "/usr/lib/python3/dist-packages/requests/sessions.py", line 576, in send
  56. r = adapter.send(request, **kwargs)
  57. File "/usr/lib/python3/dist-packages/requests/adapters.py", line 437, in send
  58. raise ConnectionError(e, request=request)
  59. requests.exceptions.ConnectionError: HTTPConnectionPool(host='192.168.4.200', port=8000): Max retries exceeded with url: /socket.io/1/?t=1515005416627 (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x7f34963fce48>: Failed to establish a new connection: [Errno 111] Connection refused',))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement