Skip to content

Commit

Permalink
datacube: minor cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
akphi committed Feb 11, 2025
1 parent c0a5458 commit a7777b1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changeset/brown-keys-happen.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
'@finos/legend-data-cube': patch
---
4 changes: 3 additions & 1 deletion packages/legend-data-cube/src/stores/core/DataCubeEngine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,9 @@ export abstract class DataCubeEngine {
return undefined;
}

async disposeCache(source: CachedDataCubeSource) {}
async disposeCache(source: CachedDataCubeSource) {
// do nothing
}

// ---------------------------------- APPLICATION ----------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ export class DataCubeViewState {
});

if (
this.grid.isCachingEnabled &&
this.settingService.getBooleanValue(
DataCubeSettingKey.GRID_CLIENT__SHOW_AUTO_ENABLE_CACHE_PERFORMANCE_WARNING,
)
Expand Down
2 changes: 1 addition & 1 deletion scripts/test/jest.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const getBaseJestConfig = (isGlobal) => {
};

export const getBaseJestProjectConfig = (projectName, packageDir) => {
let testMatch = [];
const testMatch = [];
if (!process.env.TEST_GROUP) {
testMatch.push(
`<rootDir>/${packageDir}/**/__tests__/**/*(*.)test.[jt]s?(x)`,
Expand Down

0 comments on commit a7777b1

Please sign in to comment.