diff options
Diffstat (limited to 'java/sca/modules')
-rw-r--r-- | java/sca/modules/host-jetty/src/main/java/org/apache/tuscany/sca/http/jetty/JettyServer.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/java/sca/modules/host-jetty/src/main/java/org/apache/tuscany/sca/http/jetty/JettyServer.java b/java/sca/modules/host-jetty/src/main/java/org/apache/tuscany/sca/http/jetty/JettyServer.java index d3115ce6f3..8adccdd8f0 100644 --- a/java/sca/modules/host-jetty/src/main/java/org/apache/tuscany/sca/http/jetty/JettyServer.java +++ b/java/sca/modules/host-jetty/src/main/java/org/apache/tuscany/sca/http/jetty/JettyServer.java @@ -392,7 +392,12 @@ public class JettyServer implements ServletHost { // Get the port object associated with the given port number Port port = ports.get(portNumber); if (port == null) { - throw new IllegalStateException("No servlet registered at this URI: " + suri); + // TODO - EPR - SL commented out exception temporarily as the runtime is shared + // between multiple nodes in a VM and shutting down one node blows + // up any other nodes when they shut down. + //throw new IllegalStateException("No servlet registered at this URI: " + suri); + System.out.println("No servlet registered at this URI: " + suri); + return null; } // Remove the Servlet mapping for the given Servlet |