added queueKey to error info when trying to push to redis

This commit is contained in:
Henry Oswald 2021-02-09 12:42:58 +00:00
parent 46b389e8b3
commit 49bed6595d

View file

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