mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Auto merge of #22127 - Darkspirit:https_intermittent_tracker, r=jdm
Connect to intermittent trackers via https
This is the last part of #22088.
Each https url returns the same with curl as its previous http variant, so it should be a safe change.
And https has already been used at this place in the past: 38474f8671
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22127)
<!-- Reviewable:end -->
This commit is contained in:
commit
9c7efd9151
1 changed files with 2 additions and 2 deletions
|
@ -507,7 +507,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]
|
||||
|
||||
|
@ -535,7 +535,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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue