-
Notifications
You must be signed in to change notification settings - Fork 40.8k
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
Upgrade to Tomcat 9.0.31 #20167
Comments
The upgrade is leading to 3 test failures:
This looks like it is related to this change in
I am not sure if the setup of those tests were wrong all along or if something of this is a breaking behavioural change. |
Another new failure on
|
The AJP failure is a breaking change in 9.0.x if anyone has configured the use of AJP. We can update the test to configure the connector to not require the secret. Users using AJP can either do the same or provide a secret in their connector customization. |
It's not quite as straightforward as I suggested in my previous comment. With Tomcat 9.0.30, you can switch to factory.setProtocol("AJP/1.3");
factory.addConnectorCustomizers((connector) -> {
((AbstractAjpProtocol<?>) connector.getProtocolHandler()).setSecretRequired(false);
}); We could customize a connector using the |
Sorry, no better idea here. |
The exception related to the KeyStore occurs with Tomcat 9.0.30 and 9.0.31. The test failure with 9.0.31 is due to a change in how |
No description provided.
The text was updated successfully, but these errors were encountered: