Skip to content

Commit

Permalink
Fix uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbruinsslot committed Nov 28, 2024
1 parent e242248 commit 9e24ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mula/scheduler/schedulers/schedulers/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def push_tasks_for_rescheduling(self):
filters=filters.FilterRequest(
filters=[
filters.Filter(column="hash", operator="eq", value=report_task.hash),
filters.Filter(column="schedule_id", operator="eq", value=schedule.id),
filters.Filter(column="schedule_id", operator="eq", value=str(schedule.id)),
]
),
)
Expand Down

0 comments on commit 9e24ae3

Please sign in to comment.