[mod_cluster-commits] mod_cluster SVN: r825 - trunk/native/mod_manager.
do-not-reply at jboss.org
do-not-reply at jboss.org
Mon Apr 30 12:18:50 EDT 2012
Author: jfrederic.clere at jboss.com
Date: 2012-04-30 12:18:49 -0400 (Mon, 30 Apr 2012)
New Revision: 825
Modified:
trunk/native/mod_manager/mod_manager.c
Log:
Make sure it is really the first (otherwise it won't work in 2.4.x).
Modified: trunk/native/mod_manager/mod_manager.c
===================================================================
--- trunk/native/mod_manager/mod_manager.c 2012-04-29 16:31:25 UTC (rev 824)
+++ trunk/native/mod_manager/mod_manager.c 2012-04-30 16:18:49 UTC (rev 825)
@@ -2923,7 +2923,7 @@
APR_HOOK_FIRST);
/* Process the request from the ModClusterService */
- ap_hook_handler(manager_handler, NULL, NULL, APR_HOOK_FIRST);
+ ap_hook_handler(manager_handler, NULL, NULL, APR_HOOK_REALLY_FIRST);
/* Register nodes/hosts/contexts table provider */
ap_register_provider(p, "manager" , "shared", "0", &node_storage);
More information about the mod_cluster-commits
mailing list