From c77cdd6358823e0aee91d8e7f9d2993a03b8ba82 Mon Sep 17 00:00:00 2001 From: Martijn Vermaat <martijn@vermaat.name> Date: Thu, 28 Aug 2014 17:27:35 +0200 Subject: [PATCH] Fix Mutalyzer monitor for new codebase --- extras/monitor/mutalyzer-monitor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/monitor/mutalyzer-monitor.py b/extras/monitor/mutalyzer-monitor.py index 9730604a..b5ea49fd 100755 --- a/extras/monitor/mutalyzer-monitor.py +++ b/extras/monitor/mutalyzer-monitor.py @@ -58,7 +58,7 @@ def check_website(mutalyzer_url): """ response = urllib2.urlopen(mutalyzer_url) html = response.read() - assert 'Welcome to the Mutalyzer web site' in html + assert 'Welcome to the Mutalyzer website' in html def check_soap(mutalyzer_url): @@ -85,7 +85,7 @@ def check_batch(mutalyzer_url): data = '\n'.join(variants).encode('base64') result = service.submitBatchJob(data, 'NameChecker') - job_id = int(result) + job_id = result for _ in range(BATCH_MAX_POLL): try: -- GitLab