This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v2-6-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit ae2adf76aff2c561343e87123dd3aa8ad3654ba1
Author: Pankaj Singh <[email protected]>
AuthorDate: Sat Apr 29 21:06:31 2023 +0530

    Remove print from dag trigger command (#30921)
    
    (cherry picked from commit 36fe6d0377d37b5f6be8ea5659dcabb44b4fc233)
---
 airflow/cli/commands/dag_command.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/airflow/cli/commands/dag_command.py 
b/airflow/cli/commands/dag_command.py
index c81f1c0a47..f821a04a3f 100644
--- a/airflow/cli/commands/dag_command.py
+++ b/airflow/cli/commands/dag_command.py
@@ -153,7 +153,6 @@ def dag_trigger(args) -> None:
             execution_date=args.exec_date,
             replace_microseconds=args.replace_microseconds,
         )
-        print(message)
         AirflowConsole().print_as(
             data=[message] if message is not None else [],
             output=args.output,

Reply via email to