diff --git a/superset/tasks/schedules.py b/superset/tasks/schedules.py index 54d192c3db6..8aada3b2c0b 100644 --- a/superset/tasks/schedules.py +++ b/superset/tasks/schedules.py @@ -802,8 +802,8 @@ def schedule_window( for eta in next_schedules( schedule.crontab, schedule_start_at, stop_at, resolution=resolution ): + logging.info("Scheduled eta %s", eta) get_scheduler_action(report_type).apply_async(args, eta=eta) # type: ignore - break return None