We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b2b8a2 commit 393af3dCopy full SHA for 393af3d
packages/cubejs-query-orchestrator/orchestrator/LocalCacheDriver.js
@@ -24,7 +24,8 @@ class LocalCacheDriver {
24
}
25
26
async keysStartingWith(prefix) {
27
- return Object.keys(this.store).filter(k => k.indexOf(prefix) === 0);
+ return Object.keys(this.store)
28
+ .filter(k => k.indexOf(prefix) === 0 && this.store[k].exp > new Date().getTime());
29
30
31
0 commit comments