vmassol 2004/05/16 02:43:20
Modified:
integration/ant/src/java/org/apache/cactus/integration/ant/container/weblogic
WebLogic7xContainer.java
documentation/docs/xdocs changes.xml
Log:
Ensure faster shutdown times with WebLogic 7.x by using the
<code>FORCESHUTDOWN</code> WebLogic command instead of the graceful one.
Revision Changes Path
1.15 +5 -2
jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/container/weblogic/WebLogic7xContainer.java
Index: WebLogic7xContainer.java
===================================================================
RCS file:
/home/cvs/jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/container/weblogic/WebLogic7xContainer.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- WebLogic7xContainer.java 29 Feb 2004 10:10:42 -0000 1.14
+++ WebLogic7xContainer.java 16 May 2004 09:43:20 -0000 1.15
@@ -240,7 +240,10 @@
java.createArg().setValue("weblogic");
java.createArg().setValue("-password");
java.createArg().setValue("weblogic");
- java.createArg().setValue("SHUTDOWN");
+
+ // Forcing WebLogic shutdown to speed up the shutdown process
+ java.createArg().setValue("FORCESHUTDOWN");
+
java.execute();
}
1.193 +5 -0 jakarta-cactus/documentation/docs/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/documentation/docs/xdocs/changes.xml,v
retrieving revision 1.192
retrieving revision 1.193
diff -u -r1.192 -r1.193
--- changes.xml 15 May 2004 10:10:50 -0000 1.192
+++ changes.xml 16 May 2004 09:43:20 -0000 1.193
@@ -90,6 +90,11 @@
</devs>
<release version="1.7dev" date="in CVS">
+ <action dev="VMA" type="update" issue="CACTUS-120">
+ Ensure faster shutdown times with WebLogic 7.x by using the
+ <code>FORCESHUTDOWN</code> WebLogic command instead of the graceful
+ one.
+ </action>
<action dev="VMA" type="update" issue="CACTUS-118">
The <code>JettyTestSetup</code> class now checks if the Jetty server
is already started and only starts it if it isn't running. It also
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]