fix: Typo FPM_REQUEST_INFO (#134)

* Typo FPM_REQUEST_INFO

See `[FPM_REQUEST_INFO]            = "Getting request information",` in 07fa13088e/sapi/fpm/fpm/fpm_request.c (L27)

* Fallback for PHP<7.4
This commit is contained in:
Simon Stücher 2021-05-10 13:11:30 +02:00 committed by GitHub
parent 51922f41bc
commit cf49da4466
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,8 +40,9 @@ const PoolProcessRequestFinishing string = "Finishing"
// PoolProcessRequestReadingHeaders defines a process that is reading headers.
const PoolProcessRequestReadingHeaders string = "Reading headers"
// PoolProcessRequestInfo defines a process that is getting request information.
// PoolProcessRequestInfo defines a process that is getting request information. Was changed in PHP 7.4 to PoolProcessRequestInfo74
const PoolProcessRequestInfo string = "Getting request informations"
const PoolProcessRequestInfo74 string = "Getting request information"
// PoolProcessRequestEnding defines a process that is about to end.
const PoolProcessRequestEnding string = "Ending"
@ -230,6 +231,7 @@ func CountProcessState(processes []PoolProcess) (active int64, idle int64, total
case PoolProcessRequestEnding:
case PoolProcessRequestFinishing:
case PoolProcessRequestInfo:
case PoolProcessRequestInfo74:
case PoolProcessRequestReadingHeaders:
active++
default: