You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ec...@apache.org on 2011/03/04 00:40:57 UTC

svn commit: r1076890 - /ofbiz/trunk/framework/jetty/src/org/ofbiz/jetty/container/JettyContainer.java

Author: eckardjf
Date: Thu Mar  3 23:40:56 2011
New Revision: 1076890

URL: http://svn.apache.org/viewvc?rev=1076890&view=rev
Log:
remove call to join(), this causes the current thread to wait until the server is stopped which means containers cannot be loaded after jetty

Modified:
    ofbiz/trunk/framework/jetty/src/org/ofbiz/jetty/container/JettyContainer.java

Modified: ofbiz/trunk/framework/jetty/src/org/ofbiz/jetty/container/JettyContainer.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/jetty/src/org/ofbiz/jetty/container/JettyContainer.java?rev=1076890&r1=1076889&r2=1076890&view=diff
==============================================================================
--- ofbiz/trunk/framework/jetty/src/org/ofbiz/jetty/container/JettyContainer.java (original)
+++ ofbiz/trunk/framework/jetty/src/org/ofbiz/jetty/container/JettyContainer.java Thu Mar  3 23:40:56 2011
@@ -396,7 +396,6 @@ public class JettyContainer implements C
             for (Server server : servers.values()) {
                 try {
                     server.start();
-                    server.join();
                 } catch (Exception e) {
                     Debug.logError(e, "Jetty Server Exception", module);
                     throw new ContainerException(e);