jbonofre commented on PR #2427:
URL: https://github.com/apache/karaf/pull/2427#issuecomment-4105673195
OK, the `StackOverflowError` is due to a Jetty version mismatch between
Felix WebConsole and Pax Web.
Felix HTTP Jetty12 1.1.8 was compiled against Jetty 12.0.32, but Pax Web
11.1.0 deploys Jetty 12.1.4 at runtime. The `HttpFields$Mutable$Wrapper` API
changed between the 12.0.x and 12.1.x branches, causing the infinite recursion:
`Wrapper.put() → listIterator() → wrapped iterator's set() → onPutField()
callback → put() → ... `
I'm evaluating if it's not safer to go with Pac Web 11.0.x to "align" Jetty
version.
--
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]