diff --git a/rust/crd/src/lib.rs b/rust/crd/src/lib.rs index 89c23f4f..5b7460a5 100644 --- a/rust/crd/src/lib.rs +++ b/rust/crd/src/lib.rs @@ -344,7 +344,7 @@ impl AirflowRole { command.extend(Self::authentication_start_commands(auth_config)); command.extend(vec![ "prepare_signal_handlers".to_string(), - format!("CONTAINERDEBUG_LOG_DIRECTORY={STACKABLE_LOG_DIR}/containerdebug containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"), + format!("containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"), "airflow webserver &".to_string(), ]); } @@ -362,12 +362,12 @@ impl AirflowRole { --role \"Admin\"" .to_string(), "prepare_signal_handlers".to_string(), - format!("CONTAINERDEBUG_LOG_DIRECTORY={STACKABLE_LOG_DIR}/containerdebug containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"), + format!("containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"), "airflow scheduler &".to_string(), ]), AirflowRole::Worker => command.extend(vec![ "prepare_signal_handlers".to_string(), - format!("CONTAINERDEBUG_LOG_DIRECTORY={STACKABLE_LOG_DIR}/containerdebug containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"), + format!("containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"), "airflow celery worker &".to_string(), ]), }