Author: jfrederic.clere(a)jboss.com
Date: 2009-03-18 09:55:18 -0400 (Wed, 18 Mar 2009)
New Revision: 2375
Modified:
trunk/mod_cluster/native/mod_proxy_cluster/mod_proxy_cluster.c
Log:
Oops even we do nothing the request was for us.
Modified: trunk/mod_cluster/native/mod_proxy_cluster/mod_proxy_cluster.c
===================================================================
--- trunk/mod_cluster/native/mod_proxy_cluster/mod_proxy_cluster.c 2009-03-18 13:42:02 UTC
(rev 2374)
+++ trunk/mod_cluster/native/mod_proxy_cluster/mod_proxy_cluster.c 2009-03-18 13:55:18 UTC
(rev 2375)
@@ -1451,6 +1451,7 @@
/*
* canonise the url
+ * XXX: needs more see the unparsed_uri in proxy_cluster_trans()
*/
static int proxy_cluster_canon(request_rec *r, char *url)
{
@@ -1458,8 +1459,8 @@
ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_DEBUG, 0, r->server,
"proxy_cluster_canon url: %s", url);
#endif
- if (strncasecmp(url, "balancer:", 9) == 0) {
- return OK; /* XXX: need more */
+ if (strncasecmp(url, "cluster:", 9) == 0) {
+ return OK;
}
return DECLINED;
}
Show replies by date