Merge pull request #17040 from thomasmey/patch-1

Fix message in case of unsupported platform
This commit is contained in:
Marek Siarkowicz
2023-11-30 09:14:06 +01:00
committed by GitHub

View File

@@ -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)
}