Yelp / pyleus

Pyleus is a Python framework for developing and launching Storm topologies.
Apache License 2.0
404 stars 113 forks source link

Fix msgpack long value in java serializer #48

Closed ecanzonieri closed 9 years ago

ecanzonieri commented 9 years ago

msgpack serializer in the java code breaks if the serialized value is represented as java long instead of java int. We can't distinguish between long and int in msgpack, so using always getLong() is the safest solution. This does not have any effect in python, but protects from java failures.

poros commented 9 years ago

+1

patricklucas commented 9 years ago

+1