Comment 2 for bug 1067929

Revision history for this message
Raphaël Badin (rvb) wrote :

> Andres says it was a missing "=". It used to say:
> --queues celery,master
> and he's fixing it to say:
> --queues=celery,master

More precisely, the script was using os.execv('celeryd',… , '-Q celery,master',…) and the space before 'celery' got "escaped". I suggested using the alternative syntax ("--queues=celery,master") to avoid any problems.