diff options
author | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-06 17:02:41 +0100 |
---|---|---|
committer | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-06 17:02:41 +0100 |
commit | d1b5ece9aa22847f15889ab02da0042a563589e4 (patch) | |
tree | b104ec930325f4d853e1a6326d5f42f0b2c3a088 /python | |
parent | e217672c1ab665a68aca36bb5086956254604e75 (diff) | |
download | servo-d1b5ece9aa22847f15889ab02da0042a563589e4.tar.gz servo-d1b5ece9aa22847f15889ab02da0042a563589e4.zip |
Connect to intermittent trackers via https
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/testing_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 506d20874a4..177f6c0bd81 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -491,7 +491,7 @@ class MachCommands(CommandBase): for failure in failures: if tracker_api: if tracker_api == 'default': - tracker_api = "http://build.servo.org/intermittent-tracker" + tracker_api = "https://build.servo.org/intermittent-tracker" elif tracker_api.endswith('/'): tracker_api = tracker_api[0:-1] @@ -519,7 +519,7 @@ class MachCommands(CommandBase): if reporter_api: if reporter_api == 'default': - reporter_api = "http://build.servo.org/intermittent-failure-tracker" + reporter_api = "https://build.servo.org/intermittent-failure-tracker" if reporter_api.endswith('/'): reporter_api = reporter_api[0:-1] reported = set() |