Merge pull request #24903 from overleaf/bg-fix-backup-scheduler

remove history.id check from processPendingProjects function

GitOrigin-RevId: 017ab7c9bf693ed4077d4619574154166af04fe3
This commit is contained in:
Brian Gough
2025-04-15 10:12:18 +01:00
committed by Copybot
parent cd4880d11e
commit 8b3f90b2c1

View File

@@ -234,10 +234,6 @@ async function processPendingProjects(
const changeTimes = []
for await (const project of pendingCursor(timeIntervalMs, limit)) {
const projectId = project._id.toHexString()
if (!project.overleaf?.history?.id) {
logger.error({ projectId }, 'Project does not have a history ID')
throw new Error('Project does not have a history ID')
}
const pendingAt =
project.overleaf?.backup?.pendingChangeAt || project._id.getTimestamp()
if (pendingAt) {