Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Aug 14, 2024
1 parent 247c2ed commit 66167a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/FpmRuntime/FpmHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ private function waitUntilReady(): void

// If the process has crashed we can stop immediately
if (! $this->isFpmRunning()) {
throw new Exception('PHP-FPM failed to start: ' . PHP_EOL . $this->fpm->getOutput() . PHP_EOL . $this->fpm->getErrorOutput());
// The output of FPM is in the stderr of the Lambda process
throw new Exception('PHP-FPM failed to start');
}
}
}
Expand Down

0 comments on commit 66167a1

Please sign in to comment.