Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions airflow-core/src/airflow/cli/commands/dag_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,7 @@ def dag_list_jobs(args, dag: DAG | None = None, *, session: Session = NEW_SESSIO
)


@deprecated_for_airflowctl("airflowctl dagrun list")
@cli_utils.action_cli
@suppress_logs_and_warning
@providers_configuration_loaded
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
(dag_command.dag_list_import_errors, "airflowctl dags list-import-errors"),
(dag_command.dag_pause, "airflowctl dags pause"),
(dag_command.dag_unpause, "airflowctl dags unpause"),
(dag_command.dag_list_dag_runs, "airflowctl dagrun list"),
(pool_command.pool_list, "airflowctl pools list"),
(pool_command.pool_get, "airflowctl pools get"),
(pool_command.pool_set, "airflowctl pools create"),
Expand Down