Advertisement
Guest User

Untitled

a guest
Apr 12th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.20 KB | None | 0 0
  1. Traceback (most recent call last):
  2. File "/usr/local/lib/python3.5/site-packages/urllib3/connection.py", line 157, in _new_conn
  3. (self._dns_host, self.port), self.timeout, **extra_kw
  4. File "/usr/local/lib/python3.5/site-packages/urllib3/util/connection.py", line 61, in create_connection
  5. for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
  6. File "/usr/local/lib/python3.5/socket.py", line 733, in getaddrinfo
  7. for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
  8. socket.gaierror: [Errno -5] No address associated with hostname
  9.  
  10. During handling of the above exception, another exception occurred:
  11.  
  12. Traceback (most recent call last):
  13. File "/usr/local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  14. chunked=chunked,
  15. File "/usr/local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 376, in _make_request
  16. self._validate_conn(conn)
  17. File "/usr/local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 994, in _validate_conn
  18. conn.connect()
  19. File "/usr/local/lib/python3.5/site-packages/urllib3/connection.py", line 300, in connect
  20. conn = self._new_conn()
  21. File "/usr/local/lib/python3.5/site-packages/urllib3/connection.py", line 169, in _new_conn
  22. self, "Failed to establish a new connection: %s" % e
  23. urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x7f0a9e5b7cf8>: Failed to establish a new connection: [Errno -5] No address associated with hostname
  24.  
  25. During handling of the above exception, another exception occurred:
  26.  
  27. Traceback (most recent call last):
  28. File "/usr/local/lib/python3.5/site-packages/requests/adapters.py", line 449, in send
  29. timeout=timeout
  30. File "/usr/local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  31. method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  32. File "/usr/local/lib/python3.5/site-packages/urllib3/util/retry.py", line 436, in increment
  33. raise MaxRetryError(_pool, url, error or ResponseError(cause))
  34. urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='192-168-1-33.ef942fef3b0840ed84383218b12859d6.plex.direct', port=32400): Max retries exceeded with url: /servers (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x7f0a9e5b7cf8>: Failed to establish a new connection: [Errno -5] No address associated with hostname',))
  35.  
  36. During handling of the above exception, another exception occurred:
  37.  
  38. Traceback (most recent call last):
  39. File "/usr/local/lib/python3.5/site-packages/cherrypy/_cprequest.py", line 638, in respond
  40. self._do_respond(path_info)
  41. File "/usr/local/lib/python3.5/site-packages/cherrypy/_cprequest.py", line 697, in _do_respond
  42. response.body = self.handler()
  43. File "/usr/local/lib/python3.5/site-packages/cherrypy/lib/encoding.py", line 219, in __call__
  44. self.body = self.oldhandler(*args, **kwargs)
  45. File "/usr/local/lib/python3.5/site-packages/cherrypy/_cpdispatch.py", line 54, in __call__
  46. return self.callable(*self.args, **self.kwargs)
  47. File "kitana.py", line 489, in servers
  48. servers = self.discover_pms(server_name=server_name, server_addr=server_addr)
  49. File "kitana.py", line 453, in discover_pms
  50. self.session.get(self.server_addr + "servers", headers=self.full_headers, **self.req_defaults)
  51. File "/usr/local/lib/python3.5/site-packages/requests/sessions.py", line 546, in get
  52. return self.request('GET', url, **kwargs)
  53. File "/usr/local/lib/python3.5/site-packages/requests/sessions.py", line 533, in request
  54. resp = self.send(prep, **send_kwargs)
  55. File "/usr/local/lib/python3.5/site-packages/requests/sessions.py", line 646, in send
  56. r = adapter.send(request, **kwargs)
  57. File "/usr/local/lib/python3.5/site-packages/requests/adapters.py", line 516, in send
  58. raise ConnectionError(e, request=request)
  59. requests.exceptions.ConnectionError: HTTPSConnectionPool(host='192-168-1-33.ef942fef3b0840ed84383218b12859d6.plex.direct', port=32400): Max retries exceeded with url: /servers (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x7f0a9e5b7cf8>: Failed to establish a new connection: [Errno -5] No address associated with hostname',))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement