karthikkadajji commented on code in PR #33900:
URL: https://github.com/apache/airflow/pull/33900#discussion_r1317337002
##########
airflow/providers/microsoft/azure/hooks/synapse.py:
##########
@@ -179,7 +179,7 @@ def wait_for_job_run_status(
and job_run_status not in expected_statuses
):
# Check if the job-run duration has exceeded the ``timeout``
configured.
- if start_time + timeout < time.monotonic():
+ if start_time + timeout > time.monotonic():
Review Comment:
you are right. It is the missing test case for timeout
--
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]