Skip to content

Commit baae8e4

Browse files
nipunn1313Convex, Inc.
authored and
Convex, Inc.
committed
Fix the cron migration (#36140)
😱 wrong ID Manually tested. GitOrigin-RevId: 304f3af194cb2b2bfe96a8db190e529eee1ea38d
1 parent 2de6ca6 commit baae8e4

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

crates/model/src/migrations.rs

+9-5
Original file line numberDiff line numberDiff line change
@@ -424,17 +424,21 @@ impl<RT: Runtime> MigrationWorker<RT> {
424424
prev_ts: cron.prev_ts,
425425
next_ts: cron.next_ts,
426426
};
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()))
431432
{
433+
// If there's an existing next run, update if it's
434+
// different.
432435
if existing_next_run != next_run {
433436
SystemMetadataModel::new(&mut tx, namespace)
434-
.replace(cron.id(), next_run.try_into()?)
437+
.replace(existing_next_run_id, next_run.try_into()?)
435438
.await?;
436439
}
437440
} else {
441+
// If there's no existing next run, create a new one.
438442
SystemMetadataModel::new(&mut tx, namespace)
439443
.insert(&CRON_NEXT_RUN_TABLE, next_run.try_into()?)
440444
.await?;

0 commit comments

Comments
 (0)