mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 08:01:35 +00:00
change windmill-ee-full error message
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user