diff --git a/backend/windmill-worker/src/common.rs b/backend/windmill-worker/src/common.rs index 61ec9cee6a..24bd0e2327 100644 --- a/backend/windmill-worker/src/common.rs +++ b/backend/windmill-worker/src/common.rs @@ -63,7 +63,7 @@ pub fn check_executor_binary_exists( ) -> Result<(), Error> { if !Path::new(executor_path).exists() { #[cfg(feature = "enterprise")] - let msg = format!("Couldn't find {executor} at {}. This probably means that you are not using the windmill-full image. Please use the image `windmill-full-ee` for your instance in order to run {language} jobs.", executor_path); + let msg = format!("Couldn't find {executor} at {}. This probably means that you are not using the windmill-full image. Please use the image `windmill-ee-full` for your instance in order to run {language} jobs.", executor_path); #[cfg(not(feature = "enterprise"))] let msg = format!("Couldn't find {executor} at {}. This probably means that you are not using the windmill-full image. Please use the image `windmill-full` for your instance in order to run {language} jobs.", executor_path);