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 9840be8 commit fc86f1cCopy full SHA for fc86f1c
bootstrap
@@ -12,7 +12,7 @@ function start_webserver() {
12
$pid = pcntl_fork();
13
switch($pid) {
14
case -1:
15
- die('Failed to fork webserver process');
+ die("Failed to fork webserver process\n");
16
17
case 0:
18
// exec the command
@@ -94,7 +94,7 @@ while (true) {
94
}
95
96
if ($invocation_id == '') {
97
- die('Failed to determine Lambda invocation ID');
+ die("Failed to determine Lambda invocation ID\n");
98
99
100
curl_close($ch);
0 commit comments