Community
Participate
Working Groups
See AbstractNewSessionTest. If the TestServlet is modified to check if the session is new like so: if ("create".equals(action)) { HttpSession session = request.getSession(true); assertTrue(session.isNew()); } then the assert fails. I think this is because the NoSqlSession constructor always calls the AbstractSession constructor that is intended for use when re-inflating a previously saved session, instead of the constructor for a brand new session.
took care of this, thanks