This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from ea89a908d7c close catalan gap (#58110)
add 7043f69fe45 Add CLI hot-reload support via --dev flag (#57741)
No new revisions were added by this update.
Summary of changes:
airflow-core/src/airflow/cli/cli_config.py | 5 +-
.../src/airflow/cli/commands/api_server_command.py | 2 +-
.../airflow/cli/commands/dag_processor_command.py | 9 +
.../src/airflow/cli/commands/scheduler_command.py | 6 +
.../src/airflow/cli/commands/triggerer_command.py | 9 +
airflow-core/src/airflow/cli/hot_reload.py | 197 +++++++++++++++++++++
airflow-core/src/airflow/utils/cli.py | 7 +
.../cli/commands/test_dag_processor_command.py | 11 ++
.../unit/cli/commands/test_scheduler_command.py | 10 ++
.../unit/cli/commands/test_triggerer_command.py | 11 ++
airflow-core/tests/unit/cli/test_hot_reload.py | 100 +++++++++++
airflow-core/tests/unit/utils/test_cli_util.py | 28 +++
12 files changed, 393 insertions(+), 2 deletions(-)
create mode 100644 airflow-core/src/airflow/cli/hot_reload.py
create mode 100644 airflow-core/tests/unit/cli/test_hot_reload.py