Comment 0 for bug 1067929

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

maas-region-celeryd connects to 2 queues: ' celery' and 'master'. The problem is obviously the space in front of 'celery'

start_celery() should use something like that instead:
    command = [
        'celeryd',
        '--logfile=%s' % args.logfile,
        '--schedule=%s' % args.schedule,
        '--loglevel=INFO',
        '--beat',
        '--queues=celery,master',
        ]