potiuk commented on a change in pull request #20847:
URL: https://github.com/apache/airflow/pull/20847#discussion_r792793352
##########
File path: scripts/in_container/bin/run_tmux
##########
@@ -55,16 +55,21 @@ tmux send-keys -t 'Main' 'bash' C-m 'clear' C-m
tmux split-window -v
tmux select-pane -t 1
-tmux send-keys 'opentelemetry-instrument airflow scheduler' C-m
+tmux send-keys '${COMMAND_PREFIX} airflow scheduler' C-m
tmux split-window -h
tmux select-pane -t 2
-tmux send-keys 'opentelemetry-instrument airflow webserver' C-m
+tmux send-keys '${COMMAND_PREFIX} airflow webserver' C-m
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 'opentelemetry-instrument airflow triggerer' C-m
+ tmux send-keys '${COMMAND_PREFIX} airflow triggerer' C-m
+fi
+
+COMMAND_PREFIX=""
Review comment:
Yep.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]