Skip to content

Commit 3a5f93c

Browse files
committed
updated check_tachyon_dead_workers.py
1 parent 2efaf0e commit 3a5f93c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

check_tachyon_dead_workers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def run(self):
8484
log.debug("response: %s %s" % (req.status_code, req.reason))
8585
log.debug("content:\n{0}\n{1}\n{2}".format('='*80, req.content.strip(), '='*80))
8686
if req.status_code != 200:
87-
qquit('CRITICAL', "Non-200 response! %s %s" % (req.status_code, req.reason))
87+
qquit('CRITICAL', "%s %s" % (req.status_code, req.reason))
8888
soup = BeautifulSoup(req.content, 'html.parser')
8989
dead_workers = 0
9090
try:

0 commit comments

Comments
 (0)