mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-24 18:24:19 +00:00
[misc] do not register a noop sweeping interval
This commit is contained in:
parent
29742d6a87
commit
20223d865f
1 changed files with 11 additions and 7 deletions
|
@ -143,18 +143,22 @@ PromWrapper.setupSweeping = function() {
|
|||
if (sweepingInterval) {
|
||||
clearInterval(sweepingInterval)
|
||||
}
|
||||
if (!PromWrapper.ttlInMinutes) {
|
||||
if (process.env.DEBUG_METRICS) {
|
||||
console.log('Not registering sweep method -- empty ttl')
|
||||
}
|
||||
return
|
||||
}
|
||||
if (process.env.DEBUG_METRICS) {
|
||||
console.log('Registering sweep method')
|
||||
}
|
||||
sweepingInterval = setInterval(function() {
|
||||
if (PromWrapper.ttlInMinutes) {
|
||||
if (process.env.DEBUG_METRICS) {
|
||||
console.log('Sweeping metrics')
|
||||
}
|
||||
return metrics.forEach((metric, key) => {
|
||||
return metric.sweep()
|
||||
})
|
||||
}
|
||||
}, 60000)
|
||||
|
||||
const Metrics = require('./index')
|
||||
|
|
Loading…
Reference in a new issue