After a time failure, the list of requests is not updated automatically on the server

After the power outage on the server, the time was lost and went ahead as far as 2036 ahead
The time is now in order, but the automatic updating of the list of applications does not work
root@dabian:~# zammad run rails r “pp Scheduler.find_by(method: ‘Sessions.jobs’)”
id: 6,
name: “Generate ‘Session’ data.”,
method: “Sessions.jobs”,
period: 60,
running: 0,
last_run: Thu, 07 Aug 2036 15:22:16.082000000 UTC +00:00,
prio: 1,
pid: “142480”,
note: nil,
error_message: “”,
status: “ok”,
active: true,
timeplan: {},
updated_by_id: 1,
created_by_id: 1,
created_at: Fri, 08 Dec 2023 00:35:08.626000000 UTC +00:00,
updated_at: Thu, 07 Aug 2036 15:22:16.083000000 UTC +00:00>
root@dabian:~# timedatectl
Local time: Сб 2024-08-17 15:06:48 MSK
Universal time: Сб 2024-08-17 12:06:48 UTC
RTC time: Сб 2024-08-17 12:06:50
Time zone: Europe/Moscow (MSK, +0300)
System clock synchronized: yes
NTP service: n/a
RTC in local TZ: no
zammad run rails r ‘p Time.zone.now’
Sat, 17 Aug 2024 12:07:26.313530688 UTC +00:00

Tell me how to fix it, please

Please consider configuring NTP on the system.
The following in a rails console should overcome the issue after restarting Zammad:
Scheduler.all.update(last_run: Time.now.utc - 1.hour);