From 38474f8671d17dfce992ebf6b6dda905a5de5b1b Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Wed, 30 Nov 2016 14:03:31 -0800 Subject: [PATCH] Use intermittents tracker on build.s.o --- python/servo/testing_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index feeaed9b6ae..a116a1eb804 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -508,7 +508,7 @@ class MachCommands(CommandBase): for failure in failures: if use_tracker: query = urllib2.quote(failure['test'], safe='') - request = urllib2.Request("https://www.joshmatthews.net/intermittent-tracker/query.py?name=%s" % query) + request = urllib2.Request("http://build.servo.org/intermittent-tracker/query.py?name=%s" % query) search = urllib2.urlopen(request) data = json.load(search) if len(data) == 0: