ashb commented on issue #12234:
URL: https://github.com/apache/airflow/issues/12234#issuecomment-733913202


   ```
   dt = datetime.now()
   
   args = {
       'start_date': datetime(dt.year, dt.month, dt.day, dt.hour),
   }
   ```
   
   This is the source of your problem. When it comes to evaluate the task, the 
start date is in the future, so the scheduler skips it.
   
   Use a fixed start date and set catchup=False


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