From fd92f2ad82fa59ac178187297a9eb76b633b3c1f Mon Sep 17 00:00:00 2001 From: DracoBlue Date: Sun, 19 Mar 2023 08:44:48 +0100 Subject: [PATCH] The configuration to enable ZendMaxExecutionTimers is `--enable-zend-max-execution-timers` --- frankenphp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frankenphp.go b/frankenphp.go index 8c3eb4afa5..e02b614a63 100644 --- a/frankenphp.go +++ b/frankenphp.go @@ -265,7 +265,7 @@ func Init(options ...Option) error { if config.ZTS { if !config.ZendMaxExecutionTimers && runtime.GOOS == "linux" { - logger.Warn(`Zend Timer is not enabled, "--enable-zend-timer" configuration option or timeouts (e.g. "max_execution_time") will not work as expected`) + logger.Warn(`Zend Timer is not enabled, "--enable-zend-max-execution-timers" configuration option or timeouts (e.g. "max_execution_time") will not work as expected`) } } else { opt.numThreads = 1