0 votes
in Celery by
To add a consumer to a queue named q1, use

a) app.control.add_consumer(‘q1’, reply=True)

b) app.control.add_consumer(‘q1’, reply=False)

c) app.control.add_consumer(‘q1’, reply=True, destination=[‘[email protected]’])

d) app.control.add_consumer(‘q1’, reply=False, destination=[‘[email protected]’])

1 Answer

0 votes
by
a) app.control.add_consumer(‘q1’, reply=True)

Related questions

0 votes
asked Jun 19, 2022 in Celery by john ganales
0 votes
0 votes
asked Jun 19, 2022 in Celery by john ganales
...