From e25ab9f4ca284a06c64701515e3076fd3d47afb1 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Wed, 22 Apr 2020 10:44:34 +0100 Subject: [PATCH] Fix typo for proxy --- util/net/net.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/net/net.go b/util/net/net.go index 6a18aca7..00230647 100644 --- a/util/net/net.go +++ b/util/net/net.go @@ -108,7 +108,7 @@ func Proxy(service string, address []string) (string, []string, bool) { hasProxy = true } - if prx := os.Getenv("MICRO_NEWORK_ADDRESS"); len(prx) > 0 { + if prx := os.Getenv("MICRO_NETWORK_ADDRESS"); len(prx) > 0 { address = []string{prx} hasProxy = true }