The scheduler interval does not work correctly in apache-airflow. According to the documentation, the code is written correctly, but it is possible that there is an error in it. Tell me what's the problem? For 03/25/26/03/27/03, dag works, and when the current date and time comes, it does not. Crown expression tried - the result is the same. There is a time difference between the local machine and the time in the airflow interface (UTC by default), I tried to set the start time and which was in airflow, and that didn’t change on the locale. Airflow 1.9.0. executor = local

''' emailname = Variable.get('test_mail') l_start_date = datetime(2018, 3, 25, 6, 48) l_schedule_interval = '@daily' WORKFLOW_DEFAULT_ARGS = { 'owner': 'owner', 'depends_on_past': True, 'start_date': l_start_date, 'email': emailname, 'email_on_failure': False, 'email_on_retry': False, 'retries': 1, 'retries_delay': timedelta(minutes=1), } # initialize the DAG dag = DAG( dag_id='test_dag_mail', default_args=WORKFLOW_DEFAULT_ARGS, schedule_interval=l_schedule_interval, start_date=l_start_date, ) ''' 

0