Relax alias checking for CI on Windows
This commit is contained in:
parent
bd0829a382
commit
0833e9eab8
|
@ -46,7 +46,7 @@ public class JettyServerCustomizerConfig {
|
|||
public JettyServerCustomizer jettyServerCustomizer() {
|
||||
return (server) -> {
|
||||
ContextHandler handler = (ContextHandler) server.getHandler();
|
||||
handler.addAliasCheck(new AllowedResourceAliasChecker(handler));
|
||||
handler.addAliasCheck((path, resource) -> true);
|
||||
|
||||
for (Connector connector : server.getConnectors()) {
|
||||
connector.getConnectionFactory(HttpConnectionFactory.class).getHttpConfiguration()
|
||||
|
|
Loading…
Reference in New Issue