This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new c6ef7454fd Remove Python verson check for triggerer in breeze
start-airflow (#36063)
c6ef7454fd is described below
commit c6ef7454fd8b3cf25f7c5185eb14f2464795d789
Author: Bowrna <[email protected]>
AuthorDate: Thu Dec 7 14:47:52 2023 +0530
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 1687581b4e..3ca2ddc3ee 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