can-007
Results
1
comments of
can-007
I found a workaround today: using `channel.prefetch(1)` ``` const worker = celery.createWorker(broker = "xxx", backend = "xxx", queue = "xxx") worker.broker.channel.then(ch => ch.prefetch(1)) ``` this way, when you have only...