kombu

how do you configure `celery` to use serializer 'pickle'?

how do you configure `celery` to use serializer 'pickle'? Question: on the tasks.py side i do: app = Celery( main=’tasks’, backend=’rpc://’, broker=’pyamqp://USERNAME:PASSWORD@localhost’, ) app.conf.task_serializer = ‘pickle’ app.conf.result_serializer = ‘pickle’ app.conf.event_serializer = ‘pickle’ app.conf.accept_content = [‘pickle’] app.conf.task_accept_content = [‘pickle’] app.conf.result_accept_content = [‘pickle’] app.conf.event_accept_content = [‘pickle’] when i start two workers manually i via: celery –app tasks …

Total answers: 1

AttributeError running Django site on Mac 11.0.1

AttributeError running Django site on Mac 11.0.1 Question: I’m getting an error running a django site locally that was working fine before I updated my Mac OS to 11.0.1. I’m thinking this update is the cause of the problem since nothing else was really changed between when it was working and now. 10:15:05 worker.1 | …

Total answers: 3

Celery beat not starting EOFError('Ran out of input')

Celery beat not starting EOFError('Ran out of input') Question: Everything worked perfectly fine until: celery beat v3.1.18 (Cipater) is starting. __ – … __ – _ Configuration -> . broker -> amqp://user:**@staging-api.user-app.com:5672// . loader -> celery.loaders.app.AppLoader . scheduler -> celery.beat.PersistentScheduler . db -> /tmp/beat.db . logfile -> [stderr]@%INFO . maxinterval -> now (0s) [2015-09-25 17:29:24,453: …

Total answers: 2