report error for inconsistent history results

This commit is contained in:
Brian Gough 2015-02-05 16:37:06 +00:00
parent 715b0df4a1
commit 8e810bab14

View file

@ -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