ceelian / callme

callme is a python amqp rpc module
BSD 3-Clause "New" or "Revised" License
27 stars 9 forks source link

Fix ContentDisallowed exception on kombu>=3.0.0 #9

Closed skudriashev closed 10 years ago

skudriashev commented 10 years ago

Since kombu>=3.0.0 accept parameter is required for consumer to successfully unpickle incoming message. This fix makes examples to work properly on kombu>=3.0.0 with setting 'pickle' serializer in consumer white-list. For more information, see kombu change list.

Please, consider this fix.