From 5798f7464daa17f1cc247dea0d10b42387d7cbb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Chlup?= Date: Wed, 6 Nov 2024 15:53:30 +0100 Subject: [PATCH] Add slotmem module among preloaded for mod_proxy_cluster --- 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 b7e5ba82..428b0ca9 100644 --- a/native/mod_proxy_cluster/mod_proxy_cluster.c +++ b/native/mod_proxy_cluster/mod_proxy_cluster.c @@ -3492,7 +3492,7 @@ static int proxy_cluster_post_request(proxy_worker *worker, proxy_balancer *bala */ static void proxy_cluster_hooks(apr_pool_t *p) { - static const char *const aszPre[] = {"mod_manager.c", "mod_rewrite.c", NULL}; + static const char *const aszPre[] = {"mod_manager.c", "mod_rewrite.c", "mod_slotmem.c", NULL}; static const char *const aszSucc[] = {"mod_proxy.c", NULL}; ap_hook_post_config(proxy_cluster_post_config, NULL, NULL, APR_HOOK_MIDDLE);