-
Notifications
You must be signed in to change notification settings - Fork 34
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
Management SSE for apps fails when Accept-Encoding is sent #8518
Comments
@gbbirkisson try to use |
@anatol-sialitski |
Jetty and Resteasy (at least 3.x) SSE implementation don't work well together when client wants gzip (advertises via Accept-Encoding) Easiest way for now is to disable compression for |
You can make the SSE endpoint for apps return a
200
but still fail by addingAccept-Encoding: gzip, deflate
to the request headers.Remove the
Accept-Encoding
header and everything is fine.The text was updated successfully, but these errors were encountered: