mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
- Fixed bug #53434 (php-fpm slowlog now also logs the original request).
- Fixed the missing peace of code on revision 307842
This commit is contained in:
parent
977d79a724
commit
5bab8ea920
1 changed files with 3 additions and 2 deletions
|
@ -152,8 +152,9 @@ void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *now,
|
|||
str_purify_filename(purified_script_filename, slot_c.script_filename, sizeof(slot_c.script_filename));
|
||||
fpm_pctl_kill(child->pid, FPM_PCTL_TERM);
|
||||
|
||||
zlog(ZLOG_WARNING, "[pool %s] child %d, script '%s' execution timed out (%d.%06d sec), terminating",
|
||||
child->wp->config->name, (int) child->pid, purified_script_filename, (int) tv.tv_sec, (int) tv.tv_usec);
|
||||
zlog(ZLOG_WARNING, "[pool %s] child %d, script '%s' (request: \"%s %s\") execution timed out (%d.%06d sec), terminating",
|
||||
child->wp->config->name, (int) child->pid, purified_script_filename, slot_c.request_method, slot_c.request_uri,
|
||||
(int) tv.tv_sec, (int) tv.tv_usec);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue