mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 21:11:40 +00:00
report error for inconsistent history results
This commit is contained in:
parent
715b0df4a1
commit
8e810bab14
1 changed files with 4 additions and 0 deletions
|
@ -137,6 +137,10 @@ module.exports = UpdatesManager =
|
|||
#
|
||||
if updates? and updates.length > 0
|
||||
nextBeforeTimestamp = updates[updates.length - 1].meta.end_ts
|
||||
if nextBeforeTimestamp >= before
|
||||
error = new Error("history order is broken")
|
||||
logger.error err: error, project_id:project_id, nextBeforeTimestamp: nextBeforeTimestamp, before:before, "error in project history"
|
||||
return callback(error)
|
||||
else
|
||||
nextBeforeTimestamp = null
|
||||
|
||||
|
|
Loading…
Reference in a new issue