From c6ef7454fd8b3cf25f7c5185eb14f2464795d789 Mon Sep 17 00:00:00 2001 From: Bowrna Date: Thu, 7 Dec 2023 14:47:52 +0530 Subject: [PATCH] Remove Python verson check for triggerer in breeze start-airflow (#36063) --- scripts/in_container/bin/run_tmux | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/in_container/bin/run_tmux b/scripts/in_container/bin/run_tmux index 1687581b4ef61..3ca2ddc3eed8d 100755 --- a/scripts/in_container/bin/run_tmux +++ b/scripts/in_container/bin/run_tmux @@ -63,11 +63,11 @@ if [[ ${DEV_MODE=} == "true" ]]; then else tmux send-keys 'airflow webserver' C-m fi -if python -c 'import sys; sys.exit(sys.version_info < (3, 7))'; then - tmux select-pane -t 0 - tmux split-window -h - tmux send-keys 'airflow triggerer' C-m -fi + +tmux select-pane -t 0 +tmux split-window -h +tmux send-keys 'airflow triggerer' C-m + if [[ ${INTEGRATION_CELERY} == "true" ]]; then tmux select-pane -t 0 tmux split-window -h