summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorSergei Turchanov <turchanov@farpost.com>2019-08-28 14:37:52 +1000
committerNikita Popov <nikita.ppv@gmail.com>2019-09-30 12:54:09 +0200
commite546d721e8c61fb1218335dc75b1874033c3ca24 (patch)
treeb8f509f9d8848c78f4bfc22a04d9bd71893af0e8 /UPGRADING
parent466f91bb3beb51f67bdde8267800caa9c943b7a6 (diff)
downloadphp-git-e546d721e8c61fb1218335dc75b1874033c3ca24.tar.gz
Fix #78413: php-fpm request_terminate_timeout does not take effect after fastcgi_finish_request
To retain legacy behavior I decided to add an option to control request termination logic. If request_terminate_timeout_track_finished is set, then request will be tracked for time limits even after fastcgi_finish_request was called. This patch depends on the fix provided in BUG 78469 (otherwise php-fpm workers listening on named pipes on Windows will be erroneously terminated) (PR #4636)
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING4
1 files changed, 4 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index 4f9c1b5ef2..0928819240 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -273,6 +273,10 @@ FPM:
disabling output decoration for workers output when catch_workers_output
enabled.
. The getallheaders() function is now also available.
+ . In PHP 7.3.11 a new pool option
+ request_terminate_timeout_track_finished has been added. When enabled,
+ request_terminate_timeout will also apply after fastcgi_finish_request()
+ has been called, as well as during execution of shutdown functions.
========================================
4. Deprecated Functionality