1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Fixing issues with redis keys, however still not removing lock.

This commit is contained in:
mike12345567 2021-05-13 14:34:04 +01:00
parent c87319c267
commit 86000b1714
3 changed files with 4 additions and 4 deletions

View file

@ -144,8 +144,8 @@ class RedisWrapper {
async clear() {
const db = this._db
let items = await this.scan(db)
await Promise.all(items.map(obj => this.delete(db, obj.key)))
let items = await this.scan()
await Promise.all(items.map(obj => this.delete(obj.key)))
}
}

View file

@ -43,6 +43,6 @@ exports.removeLock = async ctx => {
ctx.throw(400, `Unable to remove lock. ${err}`)
}
ctx.body = {
message: "Lock removed successfully.",
message: "Lock released successfully.",
}
}

View file

@ -50,5 +50,5 @@ exports.clearLock = async (devAppId, user) => {
if (value._id !== userId) {
throw "User does not hold lock, cannot clear it."
}
await devAppClient.delete(devAppClient)
await devAppClient.delete(devAppId)
}