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 1bec662 commit 1827a27Copy full SHA for 1827a27
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