Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jetty 12: WebSocket hangs when ServerEndpointConfig.Configurator.getEndpointInstance() throws #9412

Closed
sbordet opened this issue Feb 23, 2023 · 2 comments · Fixed by #9461
Closed
Assignees
Labels
Bug For general bugs on Jetty side

Comments

@sbordet
Copy link
Contributor

sbordet commented Feb 23, 2023

Jetty version(s)
12

Description
Must verify that a proper upgrade request is replied timely (i.e. no blocking or such) when ServerEndpointConfig.Configurator.getEndpointInstance() throws InstantiationException.

Currently, the exception is caught by JakartaWebSocketCreator and null is returned, which eventually blocks into WebSocketUpgradeFilter because the callback is not completed.

@sbordet sbordet added the Bug For general bugs on Jetty side label Feb 23, 2023
lorban added a commit that referenced this issue Mar 2, 2023
@lorban lorban added the Jetty 12 label Mar 2, 2023
@lorban
Copy link
Contributor

lorban commented Mar 2, 2023

JakartaWebSocketCreator is correctly catching InstantiationException, and is supposed to return null when this happens, that part is fine.

But the catch block is missing a call to callback.failed(e).

lorban added a commit that referenced this issue Mar 2, 2023
lorban added a commit that referenced this issue Mar 2, 2023
@lorban
Copy link
Contributor

lorban commented Mar 2, 2023

Both EE9 and EE10 suffer from this bug.

lorban added a commit that referenced this issue Mar 6, 2023
lorban added a commit that referenced this issue Mar 6, 2023
lorban added a commit that referenced this issue Mar 8, 2023
lorban added a commit that referenced this issue Mar 8, 2023
@lorban lorban self-assigned this Mar 8, 2023
@lorban lorban closed this as completed Mar 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug For general bugs on Jetty side
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants