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 4a3cf9a commit f0d3b23Copy full SHA for f0d3b23
templates/cli/lib/commands/deploy.js.twig
@@ -167,7 +167,7 @@ const deployFunction = async () => {
167
functionId: func['$id'],
168
name: func.name,
169
execute: func.execute,
170
- vars: response.vars,
+ vars: JSON.stringify(response.vars),
171
events: func.events,
172
schedule: func.schedule,
173
timeout: func.timeout,
@@ -181,7 +181,7 @@ const deployFunction = async () => {
181
182
runtime: func.runtime,
183
184
- vars: func.vars,
+ vars: JSON.stringify(func.vars),
185
186
187
0 commit comments