|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-05-08 11:52 UTC] kalle@php.net
-Status: Open
+Status: Feedback
[2010-05-08 11:52 UTC] kalle@php.net
[2010-05-08 11:53 UTC] kalle@php.net
[2010-08-09 01:13 UTC] felipe@php.net
-Status: Feedback
+Status: Assigned
-Assigned To:
+Assigned To: fat
[2010-08-21 08:27 UTC] fat@php.net
-Status: Assigned
+Status: Closed
[2010-08-21 08:27 UTC] fat@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 08:00:01 2025 UTC |
Description: ------------ when i start php-fpm,i met the fellowing message: [pool www] start_servers(18) must not be less than min_spare_servers(30) and not greater than max_spare_servers(30) but in fact,the value of min_spare_servers is 5; Test script: --------------- there is something wrong in line 459-460 of fpm_conf.c i think the correct code shoule be: } else if (config->pm_start_servers < config->pm_min_spare_servers || config->pm_start_servers > config->pm_max_spare_servers) { zlog(ZLOG_STUFF, ZLOG_ALERT, "[pool %s] start_servers(%d) must not be less than min_spare_servers(%d) and not greater than max_spare_servers(%d)", wp->config->name, config->pm_start_servers, config->pm_min_spare_servers, config->pm_max_spare_servers);