From da918bee83b5ccb5dbbd83a3baab13e9fae60145 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 27 Jan 2025 15:41:43 +0100 Subject: [PATCH] change windmill-ee-full error message --- backend/windmill-worker/src/common.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);