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 846d4b1 commit 6b7371cCopy full SHA for 6b7371c
packages/cubejs-schema-compiler/src/compiler/DataSchemaCompiler.ts
@@ -749,12 +749,16 @@ export class DataSchemaCompiler {
749
750
this.compiledYamlCache.set(cacheKey, res.content);
751
752
+ this.compiledYamlCache.set(cacheKey, res.content);
753
+
754
return { ...file, content: res.content };
755
} else {
756
const transpiledFile = this.yamlCompiler.transpileYamlFile(file, errorsReport);
757
758
this.compiledYamlCache.set(cacheKey, transpiledFile?.content || '');
759
760
+ this.compiledYamlCache.set(cacheKey, transpiledFile?.content || '');
761
762
return transpiledFile;
763
}
764
0 commit comments