Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. kubectl log svc/blockchain-gateway-stage -c blockchain-gateway
  2. log is DEPRECATED and will be removed in a future version. Use logs instead.
  3. Found 2 pods, using pod/blockchain-gateway-stage-8f646b95c-d8grq
  4. [2019-04-19 15:20:56,748][ERROR][logging]: Uncaught exception
  5. Traceback (most recent call last):
  6. File "bgw_py/server.py", line 13, in <module>
  7. from bgw_py.server.server import BGW
  8. File "./bgw_py/server/server.py", line 6, in <module>
  9. from bgw_py.server import method_classes
  10. File "./bgw_py/server/method_classes.py", line 10, in <module>
  11. from bgw_py.currencies import router
  12. File "./bgw_py/currencies/__init__.py", line 4, in <module>
  13. from bgw_py.currencies import router
  14. File "./bgw_py/currencies/router.py", line 19, in <module>
  15. 'usd-coin': eth_tokens.USDCoin(),
  16. File "./bgw_py/currencies/eth_tokens.py", line 33, in __init__
  17. super().__init__(*args, **kwargs)
  18. File "./bgw_py/currencies/base.py", line 13, in __init__
  19. self.currency_id = models.Currency.query.filter_by(slug=self.slug).first().id
  20. AttributeError: 'NoneType' object has no attribute 'id'
  21. ERROR:bgw[stage]:Uncaught exception
  22. Traceback (most recent call last):
  23. File "bgw_py/server.py", line 13, in <module>
  24. from bgw_py.server.server import BGW
  25. File "./bgw_py/server/server.py", line 6, in <module>
  26. from bgw_py.server import method_classes
  27. File "./bgw_py/server/method_classes.py", line 10, in <module>
  28. from bgw_py.currencies import router
  29. File "./bgw_py/currencies/__init__.py", line 4, in <module>
  30. from bgw_py.currencies import router
  31. File "./bgw_py/currencies/router.py", line 19, in <module>
  32. 'usd-coin': eth_tokens.USDCoin(),
  33. File "./bgw_py/currencies/eth_tokens.py", line 33, in __init__
  34. super().__init__(*args, **kwargs)
  35. File "./bgw_py/currencies/base.py", line 13, in __init__
  36. self.currency_id = models.Currency.query.filter_by(slug=self.slug).first().id
  37. AttributeError: 'NoneType' object has no attribute 'id'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement