SameerMesiah97 commented on code in PR #61472:
URL: https://github.com/apache/airflow/pull/61472#discussion_r2920315446


##########
providers/dbt/cloud/src/airflow/providers/dbt/cloud/operators/dbt.py:
##########
@@ -212,16 +214,26 @@ def execute(self, context: Context):
                     raise DbtCloudJobRunException(f"Job run {self.run_id} has 
failed or has been cancelled.")
 
                 return self.run_id
+
+            # Derive absolute deadlines for deferrable execution.
+            # execution_timeout is a hard task-level limit (cancels the job),
+            # while timeout only limits how long we wait for the job to finish.
+            # If both are set, the earliest deadline wins.
             end_time = time.time() + self.timeout
+            execution_deadline = None
+            if self.execution_timeout:

Review Comment:
   I have added an entry for `execution_timeout` in the docstring. 



-- 
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]

Reply via email to