From b5b0b8dbd43b40382d0f9cb869a78bd3fb876d1f Mon Sep 17 00:00:00 2001 From: Thomas Meyer Date: Tue, 28 Nov 2023 11:45:17 +0100 Subject: [PATCH] Fix message in case of unsupported platform Signed-off-by: Thomas Meyer --- server/etcdmain/etcd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/etcdmain/etcd.go b/server/etcdmain/etcd.go index b082bf3f9..ebb2964de 100644 --- a/server/etcdmain/etcd.go +++ b/server/etcdmain/etcd.go @@ -272,6 +272,6 @@ func checkSupportArch() { return } - lg.Error("running etcd on unsupported architecture since ETCD_UNSUPPORTED_ARCH is set", zap.String("arch", runtime.GOARCH)) + lg.Error("Refusing to run etcd on unsupported architecture since ETCD_UNSUPPORTED_ARCH is not set", zap.String("arch", runtime.GOARCH)) os.Exit(1) }