mirror of https://github.com/zulip/zulip.git
monitoring: Fix check-rabbitmq-consumers.
Missing commas in the definition of all the queues to check meant that it would be looking for queues with concatenated names, rather than the correct ones. Added the commas.
This commit is contained in:
parent
1826bac1b1
commit
2f213f7c8e
|
@ -47,7 +47,7 @@ consumers = defaultdict(int) # type: Dict[str, int]
|
|||
|
||||
sys.path.append(os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__)))))
|
||||
queues = {
|
||||
'deferred_work'
|
||||
'deferred_work',
|
||||
'digest_emails',
|
||||
'email_mirror',
|
||||
'embed_links',
|
||||
|
@ -60,7 +60,7 @@ queues = {
|
|||
'outgoing_webhooks',
|
||||
'signups',
|
||||
'slow_queries',
|
||||
'user_activity'
|
||||
'user_activity',
|
||||
'user_activity_interval',
|
||||
'user_presence',
|
||||
# These queues may not be present if settings.TORNADO_PROCESSES > 1
|
||||
|
|
Loading…
Reference in New Issue