diff --git a/bots/check-rabbitmq-consumers b/bots/check-rabbitmq-consumers index f34e484c..e34e47bc 100755 --- a/bots/check-rabbitmq-consumers +++ b/bots/check-rabbitmq-consumers @@ -8,7 +8,7 @@ from collections import defaultdict from os import path, environ sys.path.append(path.join(path.dirname(__file__), '../tools')) -from humbug_tools import check_output +from zulip_tools import check_output states = { 0: "OK", diff --git a/bots/check-rabbitmq-queue b/bots/check-rabbitmq-queue index afeb4564..eb0391d3 100755 --- a/bots/check-rabbitmq-queue +++ b/bots/check-rabbitmq-queue @@ -7,7 +7,7 @@ import time from os import path, environ sys.path.append(path.join(path.dirname(__file__), '../tools')) -from humbug_tools import check_output +from zulip_tools import check_output WARN_THRESHOLD = 50 CRIT_THRESHOLD = 100