melloware commented on PR #420:
URL: https://github.com/apache/myfaces/pull/420#issuecomment-1353222854

   Must be some kind of servlet mismatch between API level and what Tomcat is 
implementing because this is returning true.
   
   ```java
       private static Lazy<Boolean> sevlet6Available = new Lazy<>(() ->
       {
           boolean available;
           try
           {
               available = 
jakarta.servlet.SessionCookieConfig.class.getMethod("getAttribute", 
String.class) != null;
           }
           catch (Throwable t)
           {
               available = false;
           }
           log.info("MyFaces Core Servlet 6.0 support " + (available ? 
"enabled" : "disabled"));
   
           return available;
       });
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to