From 5be687279c6a5284a39e1e62e928b5cf5b359aa3 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Wed, 1 Apr 2015 20:05:32 +0000 Subject: [PATCH] Use HTTPS when including Zuul status via hideci Modern browsers are not happy to retrieve plaintext HTTP content when running in the context of an HTTPS-served page. When including Zuul's status JSON blob from the Gerrit WebUI via hideci.js, use HTTPS. Change-Id: Ibafe2b210ecdebea1781192beb0f4a14a23121eb --- modules/openstack_project/files/gerrit/hideci.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/files/gerrit/hideci.js b/modules/openstack_project/files/gerrit/hideci.js index 5a1f3a9be3..e8eee4bbcf 100644 --- a/modules/openstack_project/files/gerrit/hideci.js +++ b/modules/openstack_project/files/gerrit/hideci.js @@ -29,7 +29,7 @@ var pipelineNameRegex = /Build \w+ \((\w+) pipeline\)/; // The url to full status information on running jobs var zuulStatusURL = 'http://status.openstack.org/zuul'; // The json URL to check for running jobs -var zuulStatusJSON = 'http://zuul.openstack.org/status.json'; +var zuulStatusJSON = 'https://zuul.openstack.org/status.json'; function format_time(ms, words) { if (ms == null) {