You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Laravel Octane with FrankenPHP, and I'm setting the max_execution_time to a specific value. When a request takes longer than that, it returns a status code 500 instead of the correct 408.
This happens in my local Laravel Sail setup, but also in production. The production image has the official FrankenPHP docker image as a base image. Locally, I use the version with the FrankenPHP binary directly.
Octane Version
2.5.4
Laravel Version
11.22.0
PHP Version
8.3.10
What server type are you using?
FrankenPHP
Server Version
1.2.1
Database Driver & Version
No response
Description
I'm using Laravel Octane with FrankenPHP, and I'm setting the
max_execution_time
to a specific value. When a request takes longer than that, it returns a status code 500 instead of the correct 408.This happens in my local Laravel Sail setup, but also in production. The production image has the official FrankenPHP docker image as a base image. Locally, I use the version with the FrankenPHP binary directly.
The project I have the problem with is open-source and can be viewed here: https://github.com/solidtime-io/solidtime
Link to the Production Docker image: https://github.com/solidtime-io/solidtime/tree/main/docker/prod
Steps To Reproduce
max_execution_time
inoctane.php
to something other than0
. (f.e. 5)sleep(6)
that takes longer than themax_execution_time
The text was updated successfully, but these errors were encountered: