Some small fixes and start on handling SSL better

This commit is contained in:
Joseph Schorr 2015-02-04 11:48:25 -05:00
parent 30209e2bda
commit 98d63e00ee
5 changed files with 23 additions and 8 deletions

View file

@ -1290,7 +1290,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading
}, 2000);
};
containerService.checkStatus = function(callback) {
containerService.checkStatus = function(callback, force_ssl) {
var errorHandler = function(resp) {
if (resp.status == 404 || resp.status == 502) {
// Container has not yet come back up, so we schedule another check.
@ -1301,7 +1301,8 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading
return ApiService.errorDisplay('Cannot load status. Please report this to support')(resp);
};
ApiService.scRegistryStatus(null, null).then(callback, errorHandler, /* background */true);
ApiService.scRegistryStatus(null, null)
.then(callback, errorHandler, /* background */true, /* force ssl*/force_ssl);
};
return containerService;