eladshabi commented on issue #16288:
URL: https://github.com/apache/airflow/issues/16288#issuecomment-856578848


   @eladkal I've reproduced the issue on the Biguqery operator by running a 
loop on the SQL[1] for 80 minutes.
   
   On version 1.9.0 - the task was failed with the same error.
   
   On version 1.10.15 - the task ran successfully without any errors.
   
   Looks like this bug fixed in a newer airflow version.
   
   Thanks!
   
   [1]:
   ```
   DECLARE x timestamp;
   set x = CURRENT_TIMESTAMP();
   LOOP
     IF TIMESTAMP_DIFF(CURRENT_TIMESTAMP(), x, MINUTE) >= 80 THEN
       LEAVE;
     END IF;
   END LOOP;
   ```
   


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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to