mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user