Skip to content

Commit

Permalink
fix: Workaround config schema error on project initialization
Browse files Browse the repository at this point in the history
It's a temporary patch until #8257 is properly solved
  • Loading branch information
medikoo committed Sep 16, 2020
1 parent d070986 commit 738c52f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/plugins/interactiveCli/initializeService.js
Expand Up @@ -91,6 +91,8 @@ module.exports = {
.then(() => {
serverless.service.mergeArrays();
serverless.service.setFunctionNames();
// TODO: Temporary workaround for https://github.com/serverless/serverless/issues/8257
serverless.service.configValidationMode = 'off';
serverless.service.validate();
});
});
Expand Down

0 comments on commit 738c52f

Please sign in to comment.