Skip to content

Commit 6a08893

Browse files
committed
Merge branch 'PHP-8.2'
2 parents d2cdfdb + aa9b5ed commit 6a08893

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sapi/fpm/fpm/fpm_children.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,10 @@ void fpm_children_bury(void)
297297
break;
298298
}
299299
}
300+
} else if (fpm_globals.parent_pid == 1) {
301+
zlog(ZLOG_DEBUG, "unknown child (%d) exited %s - most likely an orphan process (master process is the init process)", pid, buf);
300302
} else {
301-
zlog(ZLOG_ALERT, "oops, unknown child (%d) exited %s. Please open a bug report (https://github.com/php/php-src/issues).", pid, buf);
303+
zlog(ZLOG_WARNING, "unknown child (%d) exited %s - potentially a bug or pre exec child (e.g. s6-notifyoncheck)", pid, buf);
302304
}
303305
}
304306
}

0 commit comments

Comments
 (0)