webhooks.py: correct typo in variable name

This commit is contained in:
Drew DeVault 2021-12-08 12:22:09 +01:00
parent 320a5e8f7c
commit 554fe3e3e9
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import sqlalchemy as sa
webhooks_broker = cfg("todo.sr.ht", "webhooks")
worker = make_worker(broker=webhooks_broker)
webhook_metrics_collector = RedisQueueCollector(webhook_broker, "srht_webhooks", "Webhook queue length")
webhook_metrics_collector = RedisQueueCollector(webhooks_broker, "srht_webhooks", "Webhook queue length")
import todosrht.tracker_import