mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.2' into PHP-8.3
This commit is contained in:
4
NEWS
4
NEWS
@@ -23,6 +23,10 @@ PHP NEWS
|
|||||||
. Fix crash in ParentNode::append() when dealing with a fragment
|
. Fix crash in ParentNode::append() when dealing with a fragment
|
||||||
containing text nodes. (nielsdos)
|
containing text nodes. (nielsdos)
|
||||||
|
|
||||||
|
- FPM:
|
||||||
|
. Fix bug GH-14175 (Show decimal number instead of scientific notation in
|
||||||
|
systemd status). (Benjamin Cremer)
|
||||||
|
|
||||||
- Hash:
|
- Hash:
|
||||||
. ext/hash: Swap the checking order of `__has_builtin` and `__GNUC__`
|
. ext/hash: Swap the checking order of `__has_builtin` and `__GNUC__`
|
||||||
(Saki Takamachi)
|
(Saki Takamachi)
|
||||||
|
|||||||
@@ -29,13 +29,13 @@ static void fpm_systemd(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
zlog(ZLOG_DEBUG, "systemd %s (Processes active:%d, idle:%d, Requests:%lu, slow:%lu, Traffic:%.3greq/sec)",
|
zlog(ZLOG_DEBUG, "systemd %s (Processes active:%d, idle:%d, Requests:%lu, slow:%lu, Traffic:%.2freq/sec)",
|
||||||
fpm_global_config.systemd_watchdog ? "watchdog" : "heartbeat",
|
fpm_global_config.systemd_watchdog ? "watchdog" : "heartbeat",
|
||||||
active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval);
|
active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (0 > sd_notifyf(0, "READY=1\n%s"
|
if (0 > sd_notifyf(0, "READY=1\n%s"
|
||||||
"STATUS=Processes active: %d, idle: %d, Requests: %lu, slow: %lu, Traffic: %.3greq/sec",
|
"STATUS=Processes active: %d, idle: %d, Requests: %lu, slow: %lu, Traffic: %.2freq/sec",
|
||||||
fpm_global_config.systemd_watchdog ? "WATCHDOG=1\n" : "",
|
fpm_global_config.systemd_watchdog ? "WATCHDOG=1\n" : "",
|
||||||
active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval)) {
|
active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval)) {
|
||||||
zlog(ZLOG_NOTICE, "failed to notify status to systemd");
|
zlog(ZLOG_NOTICE, "failed to notify status to systemd");
|
||||||
|
|||||||
Reference in New Issue
Block a user