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 6703f720cc Remove useless print from dbt operator (#34322)
6703f720cc is described below

commit 6703f720cc4d49e223de2f7c542beda5a6164212
Author: Hussein Awala <[email protected]>
AuthorDate: Wed Sep 13 00:09:49 2023 +0200

    Remove useless print from dbt operator (#34322)
---
 airflow/providers/dbt/cloud/operators/dbt.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/airflow/providers/dbt/cloud/operators/dbt.py 
b/airflow/providers/dbt/cloud/operators/dbt.py
index 5d8c6baca6..c0b37c7fdd 100644
--- a/airflow/providers/dbt/cloud/operators/dbt.py
+++ b/airflow/providers/dbt/cloud/operators/dbt.py
@@ -135,7 +135,6 @@ class DbtCloudRunJobOperator(BaseOperator):
             additional_run_config=self.additional_run_config,
         )
         self.run_id = trigger_job_response.json()["data"]["id"]
-        print(self.run_id)
         job_run_url = trigger_job_response.json()["data"]["href"]
         # Push the ``job_run_url`` value to XCom regardless of what happens 
during execution so that the job
         # run can be monitored via the operator link.

Reply via email to