We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Mac
master
HttpRequest reference exception occurs in handlerService.handler
private class HTTPHandler extends SimpleChannelInboundHandler<HttpRequest> { ...... @Override protected void channelRead0(ChannelHandlerContext ctx, HttpRequest httpRequest) throws Exception { if (httpRequest == null) { return; } if (Objects.nonNull(handlerService) && handlerService.isProcessorWrapper(httpRequest)) { handlerService.handler(ctx, httpRequest, asyncContextCompleteHandler); return; } ...... }
handlerService.handler has httpRequest release bug
Test handler message.
No response
The text was updated successfully, but these errors were encountered:
Merge pull request #3287 from mytang0/http-server_bugfix
68c9e69
[ISSUE #3284] Fix HTTP server HttpRequest release bug
mytang0
Successfully merging a pull request may close this issue.
Search before asking
Environment
Mac
EventMesh version
master
What happened
HttpRequest reference exception occurs in handlerService.handler
handlerService.handler has httpRequest release bug
How to reproduce
Test handler message.
Debug logs
No response
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: