Advertisement
Guest User

Untitled

a guest
Oct 19th, 2014
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. ERROR:tornado.application:Uncaught exception, closing connection.
  2. Traceback (most recent call last):
  3. File "/usr/local/lib/python3.4/dist-packages/tornado/iostream.py", line 508, in wrapper
  4. return callback(*args)
  5. File "/usr/local/lib/python3.4/dist-packages/tornado/stack_context.py", line 275, in null_wrapper
  6. return fn(*args, **kwargs)
  7. File "game/protocolbase.py", line 69, in handlePacketData
  8. self.onPacket(packet)
  9. File "game/service/gameserver.py", line 290, in onPacket
  10. return self.protocol.handle(self.player, packet)
  11. File "./game/protocols/base.py", line 602, in handle
  12. print(("Unhandled packet (type = {0}, length: {1}, content = {2})".format(hex(packetType), len(packet.data), ' '.join( map(str, list(map(hex, list(map(ord, packet.getData())))))) )))
  13. TypeError: ord() expected string of length 1, but int found
  14. ERROR:tornado.application:Exception in callback functools.partial(<function wrap.<locals>.null_wrapper at 0x7f923271bae8>)
  15. Traceback (most recent call last):
  16. File "/usr/local/lib/python3.4/dist-packages/tornado/ioloop.py", line 565, in _run_callback
  17. ret = callback()
  18. File "/usr/local/lib/python3.4/dist-packages/tornado/stack_context.py", line 275, in null_wrapper
  19. return fn(*args, **kwargs)
  20. File "/usr/local/lib/python3.4/dist-packages/tornado/iostream.py", line 508, in wrapper
  21. return callback(*args)
  22. File "/usr/local/lib/python3.4/dist-packages/tornado/stack_context.py", line 275, in null_wrapper
  23. return fn(*args, **kwargs)
  24. File "game/protocolbase.py", line 69, in handlePacketData
  25. self.onPacket(packet)
  26. File "game/service/gameserver.py", line 290, in onPacket
  27. return self.protocol.handle(self.player, packet)
  28. File "./game/protocols/base.py", line 602, in handle
  29. print(("Unhandled packet (type = {0}, length: {1}, content = {2})".format(hex(packetType), len(packet.data), ' '.join( map(str, list(map(hex, list(map(ord, packet.getData())))))) )))
  30. TypeError: ord() expected string of length 1, but int found
  31. Connection lost from ('127.0.0.1', 34977)
  32. ('Lost connection on, ', <game.position.Position object at 0x7f9233401558>)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement