mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 14:19:01 +02:00
Merge pull request #21751 from overleaf/bg-record-background-flush-operations
record background flush operations in project-history GitOrigin-RevId: 80169b3f93a844d7162322ca21d605fffc64d687
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
import async from 'async'
|
||||
import logger from '@overleaf/logger'
|
||||
import OError from '@overleaf/o-error'
|
||||
import metrics from '@overleaf/metrics'
|
||||
import _ from 'lodash'
|
||||
import * as RedisManager from './RedisManager.js'
|
||||
import * as UpdatesProcessor from './UpdatesProcessor.js'
|
||||
@@ -34,8 +35,10 @@ export function flushIfOld(projectId, cutoffTime, callback) {
|
||||
{ projectId, firstOpTimestamp, cutoffTime },
|
||||
'flushing old project'
|
||||
)
|
||||
metrics.inc('flush-old-updates', 1, { status: 'flushed' })
|
||||
return UpdatesProcessor.processUpdatesForProject(projectId, callback)
|
||||
} else {
|
||||
metrics.inc('flush-old-updates', 1, { status: 'skipped' })
|
||||
return callback()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user