From 1896695273b1bec14c4ddcd0d20d4efdb9176e82 Mon Sep 17 00:00:00 2001 From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com> Date: Wed, 11 Dec 2024 17:40:17 +0100 Subject: [PATCH] fix: remove unused env var --- rust/crd/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(), ]), }