I'm trying to set up a worker daemon for processing messages from rabbitmq. I'm using pika and its SelectConnection. The code works fine if I don't run it as a daemon. I can use
py worker.py
and
py worker.py &
successfully. However, when I add
import daemon
with daemon.DaemonContext():
connection.ioloop.start()
to worker.py, The code, while it doesn't raise any exceptions, stops fetching messages from the queue and maxes out my CPU utilization. worker.py looks exactly like this example.
thanks.