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 435c2a3 commit 0556b52Copy full SHA for 0556b52
packages/cubejs-query-orchestrator/src/orchestrator/QueryOrchestrator.ts
@@ -467,7 +467,9 @@ export class QueryOrchestrator {
467
} = options;
468
469
const metadataQuery = this.createMetadataQuery(operation, params);
470
- const cacheKey: CacheKey = [metadataQuery, dataSource, syncJobId];
+ const cacheKey: CacheKey = syncJobId
471
+ ? [metadataQuery, dataSource, syncJobId]
472
+ : [metadataQuery, dataSource];
473
474
return this.queryCache.cacheQueryResult(
475
metadataQuery,
0 commit comments