mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 13:59:39 +00:00
added queueKey to error info when trying to push to redis
This commit is contained in:
parent
46b389e8b3
commit
49bed6595d
1 changed files with 8 additions and 11 deletions
|
@ -132,18 +132,15 @@ const DocumentUpdaterManager = {
|
|||
error = new OError('error pushing update into redis').withCause(error)
|
||||
return callback(error)
|
||||
}
|
||||
rclient.rpush(
|
||||
DocumentUpdaterManager._getPendingUpdateListKey(),
|
||||
doc_key,
|
||||
function (error) {
|
||||
if (error) {
|
||||
error = new OError('error pushing doc_id into redis').withCause(
|
||||
error
|
||||
)
|
||||
}
|
||||
callback(error)
|
||||
const queueKey = DocumentUpdaterManager._getPendingUpdateListKey()
|
||||
rclient.rpush(queueKey, doc_key, function (error) {
|
||||
if (error) {
|
||||
error = new OError('error pushing doc_id into redis')
|
||||
.withInfo({ queueKey })
|
||||
.withCause(error)
|
||||
}
|
||||
)
|
||||
callback(error)
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue