We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ef9679 commit 74fd988Copy full SHA for 74fd988
domains/etl/services/task.py
@@ -500,7 +500,7 @@ def update_scheduling(task: Task, schedule_data: dict | None = None):
500
task.periodic_task.crontab.hour = hour
501
task.periodic_task.crontab.day_of_month = day
502
task.periodic_task.crontab.month_of_year = month
503
- task.periodic_task.crontab.weekday = weekday
+ task.periodic_task.crontab.day_of_week = weekday
504
task.periodic_task.crontab.save()
505
else:
506
crontab_schedule = CrontabSchedule.objects.create(
0 commit comments