Advertisement
Guest User

sometimes

a guest
Aug 29th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.28 KB | None | 0 0
  1. * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
  2. 127.0.0.1 - - [29/Aug/2016 23:26:50] "GET / HTTP/1.1" 200 -
  3. 127.0.0.1 - - [29/Aug/2016 23:27:08] "OPTIONS /api/login HTTP/1.1" 200 -
  4. 127.0.0.1 - - [29/Aug/2016 23:27:31] "POST /api/login HTTP/1.1" 200 -
  5. 127.0.0.1 - - [29/Aug/2016 23:27:58] "OPTIONS /api/login HTTP/1.1" 200 -
  6. [2016-08-29 23:28:20,045] ERROR in app: Exception on /api/login [POST]
  7. Traceback (most recent call last):
  8. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\connection.py", line 142, in _new_conn
  9. (self.host, self.port), self.timeout, **extra_kw)
  10. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\util\connection.py", line 91, in create_connection
  11. raise err
  12. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\util\connection.py", line 81, in create_connection
  13. sock.connect(sa)
  14. TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
  15.  
  16. During handling of the above exception, another exception occurred:
  17.  
  18. Traceback (most recent call last):
  19. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\connectionpool.py", line 578, in urlopen
  20. chunked=chunked)
  21. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\connectionpool.py", line 351, in _make_request
  22. self._validate_conn(conn)
  23. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\connectionpool.py", line 814, in _validate_conn
  24. conn.connect()
  25. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\connection.py", line 254, in connect
  26. conn = self._new_conn()
  27. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\connection.py", line 151, in _new_conn
  28. self, "Failed to establish a new connection: %s" % e)
  29. requests.packages.urllib3.exceptions.NewConnectionError: <requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x000001CB8CD6CA20>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
  30.  
  31. During handling of the above exception, another exception occurred:
  32.  
  33. Traceback (most recent call last):
  34. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\adapters.py", line 403, in send
  35. timeout=timeout
  36. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\connectionpool.py", line 623, in urlopen
  37. _stacktrace=sys.exc_info()[2])
  38. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\packages\urllib3\util\retry.py", line 281, in increment
  39. raise MaxRetryError(_pool, url, error or ResponseError(cause))
  40. requests.packages.urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='android.clients.google.com', port=443): Max retries exceeded with url: /auth (Caused by NewConnectionError('<requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x000001CB8CD6CA20>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond',))
  41.  
  42. During handling of the above exception, another exception occurred:
  43.  
  44. Traceback (most recent call last):
  45. File "d:\Program Files\Pogo-Cruncher\pkgs\flask\app.py", line 1988, in wsgi_app
  46. response = self.full_dispatch_request()
  47. File "d:\Program Files\Pogo-Cruncher\pkgs\flask\app.py", line 1641, in full_dispatch_request
  48. rv = self.handle_user_exception(e)
  49. File "d:\Program Files\Pogo-Cruncher\pkgs\flask_cors\extension.py", line 188, in wrapped_function
  50. return cors_after_request(app.make_response(f(*args, **kwargs)))
  51. File "d:\Program Files\Pogo-Cruncher\pkgs\flask\app.py", line 1544, in handle_user_exception
  52. reraise(exc_type, exc_value, tb)
  53. File "d:\Program Files\Pogo-Cruncher\pkgs\flask\_compat.py", line 33, in reraise
  54. raise value
  55. File "d:\Program Files\Pogo-Cruncher\pkgs\flask\app.py", line 1639, in full_dispatch_request
  56. rv = self.dispatch_request()
  57. File "d:\Program Files\Pogo-Cruncher\pkgs\flask\app.py", line 1625, in dispatch_request
  58. return self.view_functions[rule.endpoint](**req.view_args)
  59. File "d:\Program Files\Pogo-Cruncher\pkgs\app.py", line 40, in login
  60. logged_in = pokeapi.login(service, login_name, password, app_simulation=True)
  61. File "d:\Program Files\Pogo-Cruncher\pkgs\backend\pgoapi_locationless.py", line 85, in login
  62. if not self._auth_provider.login(username, password):
  63. File "d:\Program Files\Pogo-Cruncher\pkgs\pgoapi\auth_google.py", line 49, in login
  64. self.GOOGLE_LOGIN_CLIENT_SIG)
  65. File "d:\Program Files\Pogo-Cruncher\pkgs\gpsoauth\__init__.py", line 104, in perform_oauth
  66. return _perform_auth_request(data)
  67. File "d:\Program Files\Pogo-Cruncher\pkgs\gpsoauth\__init__.py", line 22, in _perform_auth_request
  68. headers={'User-Agent': useragent})
  69. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\api.py", line 111, in post
  70. return request('post', url, data=data, json=json, **kwargs)
  71. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\api.py", line 57, in request
  72. return session.request(method=method, url=url, **kwargs)
  73. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\sessions.py", line 475, in request
  74. resp = self.send(prep, **send_kwargs)
  75. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\sessions.py", line 585, in send
  76. r = adapter.send(request, **kwargs)
  77. File "d:\Program Files\Pogo-Cruncher\pkgs\requests\adapters.py", line 467, in send
  78. raise ConnectionError(e, request=request)
  79. requests.exceptions.ConnectionError: HTTPSConnectionPool(host='android.clients.google.com', port=443): Max retries exceeded with url: /auth (Caused by NewConnectionError('<requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x000001CB8CD6CA20>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond',))
  80. 127.0.0.1 - - [29/Aug/2016 23:28:20] "POST /api/login HTTP/1.1" 500 -
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement