You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In both 2.361.x and 2.401.x, a controller started with hpi:run does not serve WebSocket CLI requests:
java.lang.NullPointerException
at jenkins.websocket.Jetty10Provider.handle(Jetty10Provider.java:67)
at jenkins.websocket.WebSockets.lambda$upgrade$0(WebSockets.java:70)
or
java.lang.NullPointerException
at jenkins.websocket.Jetty10Provider.init(Jetty10Provider.java:68)
at jenkins.websocket.Jetty10Provider.handle(Jetty10Provider.java:75)
at jenkins.websocket.WebSockets.lambda$upgrade$0(WebSockets.java:70)
is null. I am guessing this broke in #409 but have not checked yet. websocket-core-server-10.0.15.jar are in the classpath of the plugin but perhaps something else needs to be done to activate WebSocket. Have also not yet checked whether WebSocket agents work, but I suppose not, given that the error is in WebSockets before the specific handler code is even run.
The text was updated successfully, but these errors were encountered:
In both 2.361.x and 2.401.x, a controller started with
hpi:run
does not serve WebSocket CLI requests:or
Looks like
is null. I am guessing this broke in #409 but have not checked yet.
websocket-core-server-10.0.15.jar
are in the classpath of the plugin but perhaps something else needs to be done to activate WebSocket. Have also not yet checked whether WebSocket agents work, but I suppose not, given that the error is inWebSockets
before the specific handler code is even run.The text was updated successfully, but these errors were encountered: