Switch the ping view on the view repo page to always use HTTPS

This commit is contained in:
Joseph Schorr 2014-08-13 18:48:24 -04:00
parent 61bde6bb90
commit d1f6a815bd

View file

@ -5359,7 +5359,7 @@ quayApp.directive('locationView', function () {
};
$scope.getLocationPing = function(location) {
var url = 'http://' + LOCATIONS[location]['data'] + '/okay.txt';
var url = 'https://' + LOCATIONS[location]['data'] + '/okay.txt';
PingService.pingUrl($scope, url, function(ping, success, count) {
if (count == 3 || !success) {
$scope.locationPing = success ? ping : -1;