1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

Fix key eviction

This commit is contained in:
Rory Powell 2022-06-01 15:31:27 +01:00
parent 090fdb58e0
commit eae5223fe3

View file

@ -165,7 +165,8 @@ class RedisWrapper {
}
async keys(pattern) {
return CLIENT.keys(pattern)
const db = this._db
return CLIENT.keys(addDbPrefix(db, pattern))
}
async get(key) {