From 15196c7561ff3afdb3d61afd6951d22e4cf698c7 Mon Sep 17 00:00:00 2001 From: Gary Lockyer Date: Thu, 11 Jul 2019 09:29:28 +1200 Subject: [PATCH] s4 echo_server: Enable prefork process model Enable the prefork process model, for the echo server. This is allows it to be used in the prefork_restart tests. Signed-off-by: Gary Lockyer Reviewed-by: Andreas Schneider --- source4/echo_server/echo_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/echo_server/echo_server.c b/source4/echo_server/echo_server.c index f38999ae139..c81fc140a0a 100644 --- a/source4/echo_server/echo_server.c +++ b/source4/echo_server/echo_server.c @@ -327,7 +327,7 @@ NTSTATUS server_service_echo_init(TALLOC_CTX *ctx) { static const struct service_details details = { .inhibit_fork_on_accept = true, - .inhibit_pre_fork = true, + .inhibit_pre_fork = false, .task_init = echo_task_init, .post_fork = NULL