Fix message in case of unsupported platform

Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
This commit is contained in:
Thomas Meyer 2023-11-28 11:45:17 +01:00
parent bf347243db
commit b5b0b8dbd4

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