From cba5fbe125c14e88993dcd883a83af9c5b570a48 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Tue, 6 Aug 2013 16:39:20 -0400 Subject: [PATCH] Rename humbug_tools to zulip_tools. (imported from commit 7f21fdc2c2d6ad0bdbd99eb616ffc75c347d8dcb) --- bots/check-rabbitmq-consumers | 2 +- bots/check-rabbitmq-queue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bots/check-rabbitmq-consumers b/bots/check-rabbitmq-consumers index f34e484..e34e47b 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 afeb456..eb0391d 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