Hello, we are using the official PHP Docker images as our base images and are running into PDOStatement::execute(): SSL operation failed with code 5. OpenSSL Error messages: error:8000006E:system library::Connection timed out errors since migrating to newer versions of the PHP Docker images.
Since php:8.2.29 and php:8.4.11 the timeouts occur regularly (for ~ 0,01 % of the DB requests), resulting in our PRD backend being less reliable.
Reverting back to php:8.2.28 and php:8.4.10 resolved the issues.
Did php:8.2.29 and php:8.4.11 change the default timeout durations or introduce any other changes that could result in these issues?
Hello, we are using the official PHP Docker images as our base images and are running into
PDOStatement::execute(): SSL operation failed with code 5. OpenSSL Error messages: error:8000006E:system library::Connection timed outerrors since migrating to newer versions of the PHP Docker images.Since
php:8.2.29andphp:8.4.11the timeouts occur regularly (for ~ 0,01 % of the DB requests), resulting in our PRD backend being less reliable.Reverting back to
php:8.2.28andphp:8.4.10resolved the issues.Did
php:8.2.29andphp:8.4.11change the default timeout durations or introduce any other changes that could result in these issues?