Bug #2110
Updated by Henning Blohm about 3 years ago
Upon failure to start a Web application, the Web application context may not be automatically stopped in Jetty < 10. h2. Acceptance Criteria * Make sure to invoke stop() on the Web Application Context, in case the starting failed; <pre><code class="java"> } finally { try { wac.stop(); } catch (Exception e) { logger.log(Level.WARNING, "Error during fail stop: "+WebAppResource.this.name,e); } } </code></pre> failed