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
commit 76e7a84c02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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