We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce8b511 commit b954f98Copy full SHA for b954f98
src/LambdaFunction.php
@@ -327,8 +327,8 @@ public function toDeploymentArray()
327
'Handler' => $this->handler(),
328
'Code' => $this->makePackage()->deploymentConfiguration(),
329
'Description' => $this->description(),
330
- 'Timeout' => $this->timeout(),
331
- 'MemorySize' => $this->memory(),
+ 'Timeout' => (int)$this->timeout(),
+ 'MemorySize' => (int)$this->memory(),
332
'Layers' => $this->layers(),
333
'Publish' => true,
334
];
0 commit comments