Browse Source

Fix key eviction

pull/6195/head
Rory Powell 4 years ago
parent
commit
eae5223fe3
  1. 3
      packages/backend-core/src/redis/index.js

3
packages/backend-core/src/redis/index.js

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

Loading…
Cancel
Save