Skip to content

Commit fba8e21

Browse files
committed
Merge branch 'PHP-8.3'
2 parents 7203ca8 + 7f8ffbc commit fba8e21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sapi/fpm/fpm/fpm_systemd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ static void fpm_systemd(void)
2929
}
3030

3131
/*
32-
zlog(ZLOG_DEBUG, "systemd %s (Processes active:%d, idle:%d, Requests:%lu, slow:%lu, Traffic:%.3greq/sec)",
32+
zlog(ZLOG_DEBUG, "systemd %s (Processes active:%d, idle:%d, Requests:%lu, slow:%lu, Traffic:%.2freq/sec)",
3333
fpm_global_config.systemd_watchdog ? "watchdog" : "heartbeat",
3434
active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval);
3535
*/
3636

3737
if (0 > sd_notifyf(0, "READY=1\n%s"
38-
"STATUS=Processes active: %d, idle: %d, Requests: %lu, slow: %lu, Traffic: %.3greq/sec",
38+
"STATUS=Processes active: %d, idle: %d, Requests: %lu, slow: %lu, Traffic: %.2freq/sec",
3939
fpm_global_config.systemd_watchdog ? "WATCHDOG=1\n" : "",
4040
active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval)) {
4141
zlog(ZLOG_NOTICE, "failed to notify status to systemd");

0 commit comments

Comments
 (0)