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 fe364e6 commit aea2dafCopy full SHA for aea2daf
packages/cubejs-query-orchestrator/src/orchestrator/QueryCache.ts
@@ -912,7 +912,7 @@ export class QueryCache {
912
// Most likely it'll cause race condition of refreshing data with different refreshKey values.
913
renewedAgo + inMemoryCacheDisablePeriod > renewalThreshold * 1000 ||
914
inMemoryValue.renewalKey !== renewalKey
915
- ) || renewedAgo > expiration * 1000
+ ) || renewedAgo > expiration * 1000 || renewedAgo > inMemoryCacheDisablePeriod
916
) {
917
this.memoryCache.del(redisKey);
918
} else {
0 commit comments