From c1769617ec31df21ad5046b4556dea177a1646ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Fri, 26 Jul 2024 11:15:26 +0200 Subject: [PATCH] Update resolving catalystApiURL --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index b4f8179d2..2f453f28c 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 ""