From c9aac27e8797738277375942ce89203722f43a37 Mon Sep 17 00:00:00 2001 From: Alan Chen Date: Fri, 3 Jan 2025 12:22:48 -0800 Subject: [PATCH] add: Enhance IncompatibleLocalClusterVersion error message (#4303) --- crates/fluvio-cluster/src/check/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fluvio-cluster/src/check/mod.rs b/crates/fluvio-cluster/src/check/mod.rs index e09fa9e8f6..e66c189e15 100644 --- a/crates/fluvio-cluster/src/check/mod.rs +++ b/crates/fluvio-cluster/src/check/mod.rs @@ -236,7 +236,7 @@ pub enum UnrecoverableCheckStatus { CreateLocalConfigError, /// The installed version of the local cluster is incompatible - #[error("Check Versions match failed: cannot resume a {installed} cluster with fluvio version {required}.")] + #[error("Check Versions match failed: cannot resume a {installed} cluster with fluvio version {required}.\nShutdown the cluster with \"fluvio cluster shutdown\" and use \"fluvio cluster upgrade\" to update to the new version")] IncompatibleLocalClusterVersion { /// The currently-installed version installed: String,