JBoss Native SVN: r2160 - trunk/mod_cluster/src/main/resources.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-12-23 10:24:25 -0500 (Tue, 23 Dec 2008)
New Revision: 2160
Modified:
trunk/mod_cluster/src/main/resources/mod-cluster-jboss-beans.xml
Log:
Fix for MODCLUSTER-30
Modified: trunk/mod_cluster/src/main/resources/mod-cluster-jboss-beans.xml
===================================================================
--- trunk/mod_cluster/src/main/resources/mod-cluster-jboss-beans.xml 2008-12-18 20:56:28 UTC (rev 2159)
+++ trunk/mod_cluster/src/main/resources/mod-cluster-jboss-beans.xml 2008-12-23 15:24:25 UTC (rev 2160)
@@ -34,7 +34,7 @@
<!-- Multicast address on which to listen for advertisements -->
<property name="advertiseGroupAddress">${jboss.modcluster.advertise.address,jboss.partition.udpGroup:224.0.1.105}</property>
<!-- Port to listen to for advertisements -->
- <property name="advertisePort">${jboss.modcluster.advertise.address:23364}</property>
+ <property name="advertisePort">${jboss.modcluster.advertise.port:23364}</property>
<!-- Security key the proxy is going to send with advertise messages.
Default is none. -->
@@ -125,7 +125,7 @@
<!-- Multicast address on which to listen for advertisements -->
<property name="advertiseGroupAddress">${jboss.modcluster.advertise.address,jboss.partition.udpGroup:224.0.1.105}</property>
<!-- Port to listen to for advertisements -->
- <property name="advertisePort">${jboss.modcluster.advertise.address:23364}</property>
+ <property name="advertisePort">${jboss.modcluster.advertise.port:23364}</property>
<!-- Security key the proxy is going to send with advertise messages.
Default is none. -->
@@ -296,4 +296,4 @@
</constructor>
</bean>
-</deployment>
\ No newline at end of file
+</deployment>
16 years
JBoss Native SVN: r2159 - trunk/mod_cluster/src/test/java/org/jboss/modcluster.
by jbossnative-commits@lists.jboss.org
Author: pferraro
Date: 2008-12-18 15:56:28 -0500 (Thu, 18 Dec 2008)
New Revision: 2159
Modified:
trunk/mod_cluster/src/test/java/org/jboss/modcluster/DefaultJBossWebEventHandlerTestCase.java
trunk/mod_cluster/src/test/java/org/jboss/modcluster/JBossWebEventHandlerAdapterTestCase.java
Log:
Use BEFORE_STOP_EVENT, instead of STOP_EVENT to inform mod_cluster of shutdown ASAP.
On stopServer(Server) remove contexts before engine.
Modified: trunk/mod_cluster/src/test/java/org/jboss/modcluster/DefaultJBossWebEventHandlerTestCase.java
===================================================================
--- trunk/mod_cluster/src/test/java/org/jboss/modcluster/DefaultJBossWebEventHandlerTestCase.java 2008-12-18 20:32:11 UTC (rev 2158)
+++ trunk/mod_cluster/src/test/java/org/jboss/modcluster/DefaultJBossWebEventHandlerTestCase.java 2008-12-18 20:56:28 UTC (rev 2159)
@@ -724,6 +724,10 @@
EasyMock.expect(server.findServices()).andReturn(new Service[] { service });
EasyMock.expect(service.getContainer()).andReturn(engine);
+ EasyMock.expect(engine.findChildren()).andReturn(new Container[] { container });
+ EasyMock.expect(container.findChildren()).andReturn(new Container[] { context });
+ this.recordRemoveContext(context, container, engine);
+
// Expect log message
EasyMock.expect(engine.getName()).andReturn("engine");
@@ -731,10 +735,6 @@
this.mcmpHandler.sendRequest(EasyMock.capture(capturedRequest));
- EasyMock.expect(engine.findChildren()).andReturn(new Container[] { container });
- EasyMock.expect(container.findChildren()).andReturn(new Container[] { context });
- this.recordRemoveContext(context, container, engine);
-
EasyMock.replay(this.mcmpHandler, this.nodeConfig, this.balancerConfig, server, service, engine, container, context);
this.handler.stopServer(server);
Modified: trunk/mod_cluster/src/test/java/org/jboss/modcluster/JBossWebEventHandlerAdapterTestCase.java
===================================================================
--- trunk/mod_cluster/src/test/java/org/jboss/modcluster/JBossWebEventHandlerAdapterTestCase.java 2008-12-18 20:32:11 UTC (rev 2158)
+++ trunk/mod_cluster/src/test/java/org/jboss/modcluster/JBossWebEventHandlerAdapterTestCase.java 2008-12-18 20:56:28 UTC (rev 2159)
@@ -174,7 +174,7 @@
{
LifecycleContext context = EasyMock.createStrictMock(LifecycleContext.class);
- LifecycleEvent event = new LifecycleEvent(context, Lifecycle.STOP_EVENT);
+ LifecycleEvent event = new LifecycleEvent(context, Lifecycle.BEFORE_STOP_EVENT);
this.eventHandler.stopContext(context);
@@ -195,7 +195,7 @@
Container container = EasyMock.createStrictMock(Container.class);
LifecycleContainer childContainer = EasyMock.createStrictMock(LifecycleContainer.class);
- LifecycleEvent event = new LifecycleEvent(server, Lifecycle.STOP_EVENT);
+ LifecycleEvent event = new LifecycleEvent(server, Lifecycle.BEFORE_STOP_EVENT);
EasyMock.expect(server.findServices()).andReturn(new Service[] { service });
EasyMock.expect(service.getContainer()).andReturn(engine);
16 years
JBoss Native SVN: r2158 - trunk/mod_cluster/src/main/java/org/jboss/modcluster.
by jbossnative-commits@lists.jboss.org
Author: pferraro
Date: 2008-12-18 15:32:11 -0500 (Thu, 18 Dec 2008)
New Revision: 2158
Modified:
trunk/mod_cluster/src/main/java/org/jboss/modcluster/JBossWebEventHandlerAdapter.java
Log:
Use BEFORE_STOP_EVENT, instead of STOP_EVENT to inform mod_cluster of shutdown ASAP.
Modified: trunk/mod_cluster/src/main/java/org/jboss/modcluster/JBossWebEventHandlerAdapter.java
===================================================================
--- trunk/mod_cluster/src/main/java/org/jboss/modcluster/JBossWebEventHandlerAdapter.java 2008-12-18 20:30:44 UTC (rev 2157)
+++ trunk/mod_cluster/src/main/java/org/jboss/modcluster/JBossWebEventHandlerAdapter.java 2008-12-18 20:32:11 UTC (rev 2158)
@@ -130,7 +130,7 @@
this.init = true;
}
}
- else if (type.equals(Lifecycle.STOP_EVENT))
+ else if (type.equals(Lifecycle.BEFORE_STOP_EVENT))
{
if (source instanceof Context)
{
16 years
JBoss Native SVN: r2157 - trunk/mod_cluster/src/main/java/org/jboss/modcluster.
by jbossnative-commits@lists.jboss.org
Author: pferraro
Date: 2008-12-18 15:30:44 -0500 (Thu, 18 Dec 2008)
New Revision: 2157
Modified:
trunk/mod_cluster/src/main/java/org/jboss/modcluster/DefaultJBossWebEventHandler.java
Log:
Remove contexts before engine.
Modified: trunk/mod_cluster/src/main/java/org/jboss/modcluster/DefaultJBossWebEventHandler.java
===================================================================
--- trunk/mod_cluster/src/main/java/org/jboss/modcluster/DefaultJBossWebEventHandler.java 2008-12-17 10:59:41 UTC (rev 2156)
+++ trunk/mod_cluster/src/main/java/org/jboss/modcluster/DefaultJBossWebEventHandler.java 2008-12-18 20:30:44 UTC (rev 2157)
@@ -179,8 +179,6 @@
{
Engine engine = (Engine) service.getContainer();
- this.removeAll(engine);
-
for (Container host: engine.findChildren())
{
for (Container context: host.findChildren())
@@ -188,6 +186,8 @@
this.removeContext((Context) context);
}
}
+
+ this.removeAll(engine);
}
}
16 years
JBoss Native SVN: r2156 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-12-17 05:59:41 -0500 (Wed, 17 Dec 2008)
New Revision: 2156
Modified:
trunk/build/unix/package.list
Log:
Build trunk now.
Modified: trunk/build/unix/package.list
===================================================================
--- trunk/build/unix/package.list 2008-12-17 10:50:37 UTC (rev 2155)
+++ trunk/build/unix/package.list 2008-12-17 10:59:41 UTC (rev 2156)
@@ -24,6 +24,5 @@
# trunk of mod_cluster...
rhel-httpd|2.2.8-1.el5s2|httpd-2_2_8-1_el5s2|apr:r:apr-1_2_7-11|apu:r:apr-util-1_2_7-7_el5|api:v:1.2.1|ssl:r:openssl-0_9_8b-8_3_el5_0_2|zlib:v:1.2.3|jk:v:1.2.26|iconv:v:1.11|expat:v:1.95.8|cluster:t:trunk
# mod_cluster but using lastest ASF httpd.
-mod_cluster|1.0.0.dev|2.2.10|ssl:v:0.9.8i|zlib:v:1.2.3|jk:v:1.2.26|iconv:v:1.11|expat:v:1.95.8|cluster:t:trunk
mod_cluster|1.0.0.Beta2|2.2.10|ssl:v:0.9.8i|zlib:v:1.2.3|jk:v:1.2.26|iconv:v:1.11|expat:v:1.95.8|cluster:t:trunk
-
+mod_cluster|1.0.0.dev|2.2.10|ssl:v:0.9.8i|zlib:v:1.2.3|jk:v:1.2.26|iconv:v:1.11|expat:v:1.95.8|cluster:t:trunk
16 years
JBoss Native SVN: r2155 - in trunk: httpd/httpd-2.2/installer and 1 other directory.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-12-17 05:50:37 -0500 (Wed, 17 Dec 2008)
New Revision: 2155
Added:
trunk/httpd/httpd-2.2/installer/installconf.sh
Modified:
trunk/build/unix/buildbin.rhel-httpd.sh
trunk/httpd/httpd-2.2/installer/installconf.awk
Log:
Arrange installer add unix and mod_cluster parameters.
Modified: trunk/build/unix/buildbin.rhel-httpd.sh
===================================================================
--- trunk/build/unix/buildbin.rhel-httpd.sh 2008-12-16 21:00:32 UTC (rev 2154)
+++ trunk/build/unix/buildbin.rhel-httpd.sh 2008-12-17 10:50:37 UTC (rev 2155)
@@ -218,6 +218,86 @@
mv $file $nfile
done
fi
+# Modify the conf files to allow installconf.awk to process them
+conffiles="opt/jboss/httpd/httpd/conf/httpd.conf opt/jboss/httpd/httpd/conf/extra/httpd-dav.conf \
+ opt/jboss/httpd/httpd/conf/extra/httpd-ssl.conf opt/jboss/httpd/httpd/conf/extra/httpd-vhosts.conf"
+apacheclt="opt/jboss/httpd/sbin/apachectl"
+envvars="opt/jboss/httpd/sbin/envvars"
+files="$conffiles $apacheclt $envvars"
+#
+# Arrange httpd.conf
+file="$RPM_BUILD_ROOT/jboss/httpd/httpd/conf/httpd.conf"
+cp -p $file $file.new
+echo 's:ServerRoot "/opt/jboss/httpd/httpd":ServerRoot "@@ServerRoot@@":' > sed.cmd
+echo "s/Listen 80/Listen @@Port@@/" >> sed.cmd
+echo "s/LoadModule proxy_balancer/#LoadModule proxy_balancer/" >> sed.cmd
+echo 's:DocumentRoot "/opt/jboss/httpd/htdocs/htdocs":DocumentRoot "@exp_htdocsdir@":' >> sed.cmd
+echo 's:Directory "/opt/jboss/httpd/htdocs/htdocs":Directory "@exp_htdocsdir@":' >> sed.cmd
+echo 's:ErrorLog "logs/error_log":ErrorLog "@rel_logfiledir@/error_log":' >> sed.cmd
+echo 's:CustomLog "logs/access_log":CustomLog "@rel_logfiledir@/access_log":' >> sed.cmd
+echo 's:Directory "/opt/jboss/httpd/htdocs/cgi-bin":Directory "@exp_cgidir@":' >> sed.cmd
+echo "s:TypesConfig conf/mime.types:TypesConfig @rel_sysconfdir(a)/mime.types:" >> sed.cmd
+sed -f sed.cmd $file > $file.new
+cat >> $file.new <<EOF
+<IfModule manager_module>
+ Listen @@MCMPIP@@:@@MCMPPORT@@
+ ManagerBalancerName mycluster
+ <VirtualHost @@MCMPIP@@:@@MCMPPORT@@>
+ <Directory />
+ Order deny,allow
+ Deny from all
+ Allow from @@SUBIP@@
+ </Directory>
+ KeepAliveTimeout 300
+ MaxKeepAliveRequests 0
+ ServerAdvertise on http://@@MCMPIP@@:@@MCMPPORT@@
+ AdvertiseFrequency 5
+ AdvertiseGroup @@ADVIP@@:23364
+ </VirtualHost>
+</IfModule>
+EOF
+mv $file.new $file
+#
+# Arrange conf/extra/httpd-dav.conf (if it exists)
+file="$RPM_BUILD_ROOT/jboss/httpd/httpd/extra/httpd-dav.conf"
+if [ -f $file ]; then
+ cp -p $file $file.new
+ echo "s:/opt/jboss/httpd/httpd:@@ServerRoot@@:" > sed.cmd
+ sed -f sed.cmd $file > $file.new
+ mv $file.new $file
+fi
+#
+# Arrange conf/extra/httpd-vhosts.conf (no that is just an example)
+file="$RPM_BUILD_ROOT/jboss/httpd/httpd/extra/httpd-vhosts.conf"
+#
+# Arrange conf/extra/httpd-ssl.conf (if it exists)
+file="$RPM_BUILD_ROOT/jboss/httpd/httpd/conf/extra/httpd-ssl.conf
+if [ -f $file ]; then
+ cp -p $file $file.new
+ echo "s/Listen 443/Listen @@SSLPort@@/" > sed.cmd
+ echo "s:/opt/jboss/httpd/httpd/logs/ssl_scache:@exp_runtimedir@/ssl_scache:" >> sed.cmd
+ echo "s:/opt/jboss/httpd/httpd/logs/ssl_mutex:@exp_runtimedir@/ssl_mutex:" >> sed.cmd
+ echo "s/_default_:443/_default_:@@SSLPort@@/" >> sed.cmd
+ echo 's:DocumentRoot "/opt/jboss/httpd/htdocs/htdocs":DocumentRoot "@exp_htdocsdir@":' >> sed.cmd
+ echo "s/ServerName www.example.com:443/ServerName www.example.com:@@SSLPort@@/" >> sed.cmd
+ echo 's:ErrorLog "/opt/jboss/httpd/httpd/logs/error_log":ErrorLog "@exp_logfiledir@/error_log":' >> sed.cmd
+ echo 's:TransferLog "/opt/jboss/httpd/httpd/logs/access_log":TransferLog "@exp_logfiledir@/access_log":' >> sed.cmd
+ echo 's:SSLCertificateFile "/opt/jboss/httpd/httpd/conf/server.crt":SSLCertificateFile "@exp_sysconfdir(a)/server.crt":' >> sed.cmd
+ echo 's:SSLCertificateKeyFile "/opt/jboss/httpd/httpd/conf/server.key":SSLCertificateKeyFile "@exp_sysconfdir(a)/server.key":' >> sed.cmd
+ sed -f sed.cmd $file > $file.new
+ mv $file.new $file
+fi
+#
+# Arrange common parts
+for FILE in $files
+do
+ file=${RPM_BUILD_ROOT}/$FILE
+ echo "$file"
+ cp $file $file.in
+ sed "s:opt/jboss/httpd:@@HTTPDLOC@@:" $file > $file.in
+ rm -f $file
+done
+
echo "Done"
exit 0
Modified: trunk/httpd/httpd-2.2/installer/installconf.awk
===================================================================
--- trunk/httpd/httpd-2.2/installer/installconf.awk 2008-12-16 21:00:32 UTC (rev 2154)
+++ trunk/httpd/httpd-2.2/installer/installconf.awk 2008-12-17 10:50:37 UTC (rev 2155)
@@ -18,7 +18,17 @@
serverport = ARGV[4];
serversslport = ARGV[5];
serverroot = ARGV[6];
+ mcmpadvip = ARGV[7];
+ mcmpadport = ARGV[8];
+ mcmpsubip = ARGV[9];
+ mcmpip = ARGV[10];
+ mcmpport = ARGV[11];
+ delete ARGV[11];
+ delete ARGV[10];
+ delete ARGV[9];
+ delete ARGV[8];
+ delete ARGV[7];
delete ARGV[6];
delete ARGV[5];
delete ARGV[4];
@@ -43,6 +53,11 @@
print " ServerPort : " serverport;
print " ServerSslPort : " serverport;
print " ServerRoot : " serverroot;
+ print " AdvertiseIP : " mcmpadvip;
+ print " AdvertisePort : " mcmpadvport;
+ print " SubnetAdv : " mcmpsubip;
+ print " MCMPIP : " mcmpip;
+ print " MCMPPort : " mcmpport;
filelist["httpd.conf"] = "httpd.conf.in";
filelist["extra/httpd-autoindex.conf"] = "extra/httpd-autoindex.conf.in";
@@ -162,6 +177,11 @@
gsub( /example.com/, domainname );
gsub( /@@Port@@/, serverport );
gsub( /443/, serversslport );
+ gsub( /@@ADVIP@@/, mcmpadvip );
+ gsub( /23364/, mcmpadvport );
+ gsub( /@@SUBIP@@/, mcmpsubip );
+ gsub( /@@MCMPIP@@/, mcmpip );
+ gsub( /@@MCMPPORT@@/, mcmpport );
print $0 > dstfl;
}
close(srcfl);
Added: trunk/httpd/httpd-2.2/installer/installconf.sh
===================================================================
--- trunk/httpd/httpd-2.2/installer/installconf.sh (rev 0)
+++ trunk/httpd/httpd-2.2/installer/installconf.sh 2008-12-17 10:50:37 UTC (rev 2155)
@@ -0,0 +1,48 @@
+#!/bin/sh
+# Copyright(c) 2008 Red Hat Middleware, LLC,
+# and individual contributors as indicated by the @authors tag.
+# See the copyright.txt in the distribution for a
+# full listing of individual contributors.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library in the file COPYING.LIB;
+# if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+#
+# @author Jean-Frederic Clere
+#
+
+echo ""
+echo "Running : `basename $0` $LastChangedDate: 2008-04-21 11:25:11 +0200 (Mon, 21 Apr 2008) $"
+echo ""
+echo "Started : `date`"
+echo "Params : $*"
+echo ""
+
+INSTALL_HOME=`(cd ..; pwd)`
+HTTPD_SERVERNAME=${1-localhost}
+HTTPD_DOMAINNAME=${2-localdomain}
+HTTPD_PORT=${3-8000}
+HTTPD_SSLPORT=${4-8443}
+MCMPADVIP=${5-232.0.0.2}
+MCMPADPORT=${6-23364}
+MCMPSUBIP=${7-all}
+MCMPIP=${8-localhost}
+MCMPPORT=${9-6666}
+
+
+HTTPD_ADMIN=${USERNAME}(a)${HTTPD_SERVERNAME}.${HTTPD_DOMAINNAME}
+HTTPD_ROOT=${INSTALL_HOME}
+
+
+awk -f installconf.awk ${HTTPD_DOMAINNAME} ${HTTPD_SERVERNAME} ${HTTPD_ADMIN} ${HTTPD_PORT} ${HTTPD_SSLPORT} "${HTTPD_ROOT}" ${MCMPADVIP} ${MCMPADPORT} ${MCMPSUBIP} ${MCMPPORT}
16 years
JBoss Native SVN: r2153 - trunk/mod_cluster/src/main/java/org/jboss/modcluster/load/metric/impl.
by jbossnative-commits@lists.jboss.org
Author: pferraro
Date: 2008-12-16 15:31:52 -0500 (Tue, 16 Dec 2008)
New Revision: 2153
Modified:
trunk/mod_cluster/src/main/java/org/jboss/modcluster/load/metric/impl/MBeanQueryLoadContext.java
Log:
[MODCLUSTER-29] Support mixed-case mbean attributes
Modified: trunk/mod_cluster/src/main/java/org/jboss/modcluster/load/metric/impl/MBeanQueryLoadContext.java
===================================================================
--- trunk/mod_cluster/src/main/java/org/jboss/modcluster/load/metric/impl/MBeanQueryLoadContext.java 2008-12-16 19:40:32 UTC (rev 2152)
+++ trunk/mod_cluster/src/main/java/org/jboss/modcluster/load/metric/impl/MBeanQueryLoadContext.java 2008-12-16 20:31:52 UTC (rev 2153)
@@ -26,6 +26,7 @@
import java.util.List;
import java.util.Set;
+import javax.management.AttributeNotFoundException;
import javax.management.JMException;
import javax.management.MBeanServer;
import javax.management.ObjectName;
@@ -71,9 +72,36 @@
for (ObjectName name: this.names)
{
- list.add(targetClass.cast(this.server.getAttribute(name, attribute)));
+ list.add(targetClass.cast(this.getAttribute(name, attribute)));
}
return list;
}
+
+ private Object getAttribute(ObjectName name, String attribute) throws JMException
+ {
+ try
+ {
+ return this.server.getAttribute(name, attribute);
+ }
+ catch (AttributeNotFoundException e)
+ {
+ // MODCLUSTER-29
+ // Try again, reversing case of the first letter of the attribute
+ StringBuilder builder = new StringBuilder(attribute.length());
+ char first = attribute.charAt(0);
+ builder.append(Character.isLowerCase(first) ? Character.toUpperCase(first) : Character.toLowerCase(first));
+ builder.append(attribute.substring(1));
+
+ try
+ {
+ return this.server.getAttribute(name, builder.toString());
+ }
+ catch (AttributeNotFoundException e2)
+ {
+ // Throw original exception
+ throw e;
+ }
+ }
+ }
}
16 years
JBoss Native SVN: r2152 - trunk/mod_cluster/src/main/resources.
by jbossnative-commits@lists.jboss.org
Author: pferraro
Date: 2008-12-16 14:40:32 -0500 (Tue, 16 Dec 2008)
New Revision: 2152
Modified:
trunk/mod_cluster/src/main/resources/mod-cluster-jboss-beans.xml
Log:
DynamicLoadBalanceFactorProvider accepts set of LoadMetrics, not LoadMetricSources.
Modified: trunk/mod_cluster/src/main/resources/mod-cluster-jboss-beans.xml
===================================================================
--- trunk/mod_cluster/src/main/resources/mod-cluster-jboss-beans.xml 2008-12-15 16:40:14 UTC (rev 2151)
+++ trunk/mod_cluster/src/main/resources/mod-cluster-jboss-beans.xml 2008-12-16 19:40:32 UTC (rev 2152)
@@ -63,7 +63,7 @@
<constructor>
<parameter>
<!-- Define the load metrics to use in your load balance factor calculation here -->
- <set elementClass="org.jboss.modcluster.load.metric.LoadMetricSource">
+ <set elementClass="org.jboss.modcluster.load.metric.LoadMetric">
<inject bean="BusyConnectorsLoadMetric"/>
<inject bean="HeapMemoryUsageLoadMetric"/>
</set>
16 years
JBoss Native SVN: r2151 - trunk/build/daemon.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2008-12-15 11:40:14 -0500 (Mon, 15 Dec 2008)
New Revision: 2151
Modified:
trunk/build/daemon/buildmdc.bat
Log:
Also build a non-ssl version of the integration tests.
Modified: trunk/build/daemon/buildmdc.bat
===================================================================
--- trunk/build/daemon/buildmdc.bat 2008-12-15 16:26:57 UTC (rev 2150)
+++ trunk/build/daemon/buildmdc.bat 2008-12-15 16:40:14 UTC (rev 2151)
@@ -48,7 +48,9 @@
REM build mod_cluster bundles.
call build.bat sdk x86 mod_cluster -ssl -cache
+call build.bat sdk x86 mod_cluster -cache
call build.bat sdk x64 mod_cluster -ssl -cache
+call build.bat sdk x64 mod_cluster -cache
REM
REM call build.bat sdk i64 mod_cluster -ssl -cache
REM
16 years