From 05053da6b9844406943e7dfa11ac6362cb893de8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Chlup?= Date: Fri, 2 Aug 2024 08:42:27 +0200 Subject: [PATCH] Fix missing parenthesis in a log message --- native/mod_proxy_cluster/mod_proxy_cluster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/mod_proxy_cluster/mod_proxy_cluster.c b/native/mod_proxy_cluster/mod_proxy_cluster.c index 716684e4..8d3dfd1e 100644 --- a/native/mod_proxy_cluster/mod_proxy_cluster.c +++ b/native/mod_proxy_cluster/mod_proxy_cluster.c @@ -237,7 +237,7 @@ static void check_workers(const proxy_server_conf *conf, const server_rec *s) /* this happens when a new child process is created and it "cleaned" some old slotmem */ /* it is like the remove_workers_node we try to restore the non shared memory allocated in * create_worker() */ - ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, "check_workers: DOING (empty port : %d id : %d", + ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, "check_workers: DOING (empty port : %d id : %d)", helper->shared->port, helper->index); stop_worker = 1; }