File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ impl AirflowRole {
344
344
command. extend ( Self :: authentication_start_commands ( auth_config) ) ;
345
345
command. extend ( vec ! [
346
346
"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 &" ) ,
348
348
"airflow webserver &" . to_string( ) ,
349
349
] ) ;
350
350
}
@@ -362,12 +362,12 @@ impl AirflowRole {
362
362
--role \" Admin\" "
363
363
. to_string( ) ,
364
364
"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 &" ) ,
366
366
"airflow scheduler &" . to_string( ) ,
367
367
] ) ,
368
368
AirflowRole :: Worker => command. extend ( vec ! [
369
369
"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 &" ) ,
371
371
"airflow celery worker &" . to_string( ) ,
372
372
] ) ,
373
373
}
You can’t perform that action at this time.
0 commit comments