Community
Participate
Working Groups
Build Identifier: Jetty 8.0.0 M2 When deploying on a servlet 3.0 container, adding a ContinuationListener to a new Servlet3Continuation fails. Around line 96 of Servlet3Continuation.java we see a faulty piece of code: if (_context==null) _context.addListener(wrapped); else _listeners.add(wrapped); This will always fail when _context is null, I'd say it should be _context!=null Reproducible: Always
fixed in r2962 for 7.4.0. Will migrate to jetty-8 soon after and will be in a M release (or a real release as soon as we get IP clearance on 2.2 JSP).