diff --git a/main.go b/main.go index b4f8179d..2f453f28 100644 --- a/main.go +++ b/main.go @@ -374,7 +374,7 @@ func resolveCatalystApiURL(cli config.Cli) interface{} { // the whole catalyst node hostname := os.Getenv("HOSTNAME") // e.g. "staging-catalyst-0" ecosystem := strings.Split(hostname, "-")[0] // e.g. "staging" - return fmt.Sprintf("%s-catalyst-api-%s", ecosystem, hostname) + return fmt.Sprintf("http://%s-catalyst-api-%s", ecosystem, hostname) } // not used for other modes return ""