File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -424,17 +424,21 @@ impl<RT: Runtime> MigrationWorker<RT> {
424
424
prev_ts : cron. prev_ts ,
425
425
next_ts : cron. next_ts ,
426
426
} ;
427
- if let Some ( existing_next_run) = CronModel :: new ( & mut tx, namespace. into ( ) )
428
- . next_run ( cron. id ( ) . developer_id )
429
- . await ?
430
- . map ( |next_run| next_run. into_value ( ) )
427
+ if let Some ( ( existing_next_run_id, existing_next_run) ) =
428
+ CronModel :: new ( & mut tx, namespace. into ( ) )
429
+ . next_run ( cron. id ( ) . developer_id )
430
+ . await ?
431
+ . map ( |next_run| ( next_run. into_id_and_value ( ) ) )
431
432
{
433
+ // If there's an existing next run, update if it's
434
+ // different.
432
435
if existing_next_run != next_run {
433
436
SystemMetadataModel :: new ( & mut tx, namespace)
434
- . replace ( cron . id ( ) , next_run. try_into ( ) ?)
437
+ . replace ( existing_next_run_id , next_run. try_into ( ) ?)
435
438
. await ?;
436
439
}
437
440
} else {
441
+ // If there's no existing next run, create a new one.
438
442
SystemMetadataModel :: new ( & mut tx, namespace)
439
443
. insert ( & CRON_NEXT_RUN_TABLE , next_run. try_into ( ) ?)
440
444
. await ?;
You can’t perform that action at this time.
0 commit comments