Advertisement
Guest User

Untitled

a guest
Feb 26th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.45 KB | None | 0 0
  1. INFO:pathfinder.cli:Starting Raiden Pathfinding Service
  2. INFO:pathfinder.cli:Starting Matrix Transport
  3. INFO:pathfinder.cli:Starting Blockchain Monitor
  4. INFO:pathfinder.cli:Starting Pathfinding Service
  5. DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): transport01.raiden.network
  6. CRITICAL:pathfinder.pathfinding_service:Unhandled exception terminating the program
  7. Traceback (most recent call last):
  8. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/gevent/greenlet.py", line 536, in run
  9. result = self._run(*self.args, **self.kwargs)
  10. File "/Users/paul/Work/raiden-pathfinding-service/pathfinder/transport/matrix.py", line 78, in _run
  11. self.connect()
  12. File "/Users/paul/Work/raiden-pathfinding-service/pathfinder/transport/matrix.py", line 40, in connect
  13. self.client.login_with_password(self.username, self.password)
  14. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/matrix_client/client.py", line 236, in login_with_password
  15. token = self.login_with_password_no_sync(username, password)
  16. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/matrix_client/client.py", line 213, in login_with_password_no_sync
  17. "m.login.password", user=username, password=password
  18. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/matrix_client/api.py", line 150, in login
  19. return self._send("POST", "/login", content)
  20. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/matrix_client/api.py", line 656, in _send
  21. verify=self.validate_cert
  22. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/requests/api.py", line 58, in request
  23. return session.request(method=method, url=url, **kwargs)
  24. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/requests/sessions.py", line 508, in request
  25. resp = self.send(prep, **send_kwargs)
  26. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/requests/sessions.py", line 618, in send
  27. r = adapter.send(request, **kwargs)
  28. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/requests/adapters.py", line 440, in send
  29. timeout=timeout
  30. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/urllib3/connectionpool.py", line 601, in urlopen
  31. chunked=chunked)
  32. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/urllib3/connectionpool.py", line 346, in _make_request
  33. self._validate_conn(conn)
  34. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/urllib3/connectionpool.py", line 850, in _validate_conn
  35. conn.connect()
  36. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/urllib3/connection.py", line 314, in connect
  37. cert_reqs=resolve_cert_reqs(self.cert_reqs),
  38. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/urllib3/util/ssl_.py", line 269, in create_urllib3_context
  39. context.options |= options
  40. File "/usr/local/Cellar/python3/3.6.4_2/Frameworks/Python.framework/Versions/3.6/lib/python3.6/ssl.py", line 465, in options
  41. super(SSLContext, SSLContext).options.__set__(self, value)
  42. File "/usr/local/Cellar/python3/3.6.4_2/Frameworks/Python.framework/Versions/3.6/lib/python3.6/ssl.py", line 465, in options
  43. super(SSLContext, SSLContext).options.__set__(self, value)
  44. File "/usr/local/Cellar/python3/3.6.4_2/Frameworks/Python.framework/Versions/3.6/lib/python3.6/ssl.py", line 465, in options
  45. super(SSLContext, SSLContext).options.__set__(self, value)
  46. [Previous line repeated 311 more times]
  47. RecursionError: maximum recursion depth exceeded while calling a Python object
  48.  
  49. During handling of the above exception, another exception occurred:
  50.  
  51. Traceback (most recent call last):
  52. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/gevent/hub.py", line 866, in switch
  53. switch(value)
  54. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/gevent/greenlet.py", line 538, in run
  55. self._report_error(sys.exc_info())
  56. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/gevent/greenlet.py", line 520, in _report_error
  57. self._exc_info = exc_info[0], exc_info[1], dump_traceback(exc_info[2])
  58. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/gevent/_tblib.py", line 370, in g
  59. return f(a)
  60. File "/Users/paul/Work/venvs/test-venv/lib/python3.6/site-packages/gevent/_tblib.py", line 425, in dump_traceback
  61. return dumps(tb)
  62. RecursionError: maximum recursion depth exceeded while pickling an object
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement