Skip to content

Commit 61d9e7b

Browse files
authored
fix: remove unused env var (#561)
1 parent e9cf1e1 commit 61d9e7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rust/crd/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ impl AirflowRole {
344344
command.extend(Self::authentication_start_commands(auth_config));
345345
command.extend(vec![
346346
"prepare_signal_handlers".to_string(),
347-
format!("CONTAINERDEBUG_LOG_DIRECTORY={STACKABLE_LOG_DIR}/containerdebug containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"),
347+
format!("containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"),
348348
"airflow webserver &".to_string(),
349349
]);
350350
}
@@ -362,12 +362,12 @@ impl AirflowRole {
362362
--role \"Admin\""
363363
.to_string(),
364364
"prepare_signal_handlers".to_string(),
365-
format!("CONTAINERDEBUG_LOG_DIRECTORY={STACKABLE_LOG_DIR}/containerdebug containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"),
365+
format!("containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"),
366366
"airflow scheduler &".to_string(),
367367
]),
368368
AirflowRole::Worker => command.extend(vec![
369369
"prepare_signal_handlers".to_string(),
370-
format!("CONTAINERDEBUG_LOG_DIRECTORY={STACKABLE_LOG_DIR}/containerdebug containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"),
370+
format!("containerdebug --output={STACKABLE_LOG_DIR}/containerdebug-state.json --loop &"),
371371
"airflow celery worker &".to_string(),
372372
]),
373373
}

0 commit comments

Comments
 (0)