[FIX] cron_daylight_saving_time_resistant: Keep test savepoint

pull/2899/head
Simone Rubino 2024-04-04 17:55:45 +02:00
parent 3c580f772a
commit 0dc32c1f03
No known key found for this signature in database
GPG Key ID: 9B3C2C5348EB3357
2 changed files with 6 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class IrCron(models.Model):
# be 1 hour too soon) and the date will just be incremented of 1
# hour, each hour...until the changes time really occurs...
if job["daylight_saving_time_resistant"]:
with cls.pool.cursor() as job_cr:
with db.cursor() as job_cr:
try:
cron = api.Environment(
job_cr,

View File

@ -29,6 +29,11 @@ class TestDST(TransactionCase):
{"nextcall": datetime_str, "daylight_saving_time_resistant": True}
)
cron.flush_recordset()
cron.ir_actions_server_id.flush_recordset(
fnames=[
"model_name",
],
)
self.env.cr.execute("SELECT * FROM ir_cron WHERE id = %s", (cron.id,))
job = self.env.cr.dictfetchall()[0]
timezone_date_orig = fields.Datetime.context_timestamp(cron, cron.nextcall)