From 885e8090190d5c588fab82eb0b60c3bb21fcf7c6 Mon Sep 17 00:00:00 2001 From: Fabrizio Steiner Date: Wed, 15 Feb 2017 10:13:57 +0100 Subject: [PATCH] Allow services with https urls. --- cmd/control/service/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/control/service/service.go b/cmd/control/service/service.go index 3ac20765..d6a4871a 100644 --- a/cmd/control/service/service.go +++ b/cmd/control/service/service.go @@ -205,7 +205,7 @@ func isLocal(service string) bool { } func IsLocalOrURL(service string) bool { - return isLocal(service) || strings.HasPrefix(service, "http:/") || strings.HasPrefix(service, "http:/") + return isLocal(service) || strings.HasPrefix(service, "http:/") || strings.HasPrefix(service, "https:/") } func validateService(service string, cfg *config.CloudConfig) {