Skip to content

Commit

Permalink
fix: data driven cached file key
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed May 16, 2021
1 parent 86f5742 commit d1f09ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/instrument/src/misc/data-driven.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const assignDocumentData = (doc: Document, filePath: string): void => {
if (fs.existsSync(dataFilePath)) {
const cached = new CachedFileResource<DocumentData>(
'data-driven',
`v1`,
dataFilePath,
dataFilePath,
);
let result: DocumentData | undefined = cached.get();
Expand Down

0 comments on commit d1f09ef

Please sign in to comment.