parent
64df377600
commit
f73c4a837c
|
@ -142,7 +142,7 @@
|
|||
<mysql.version>8.0.18</mysql.version>
|
||||
<nekohtml.version>1.9.22</nekohtml.version>
|
||||
<neo4j-ogm.version>3.1.15</neo4j-ogm.version>
|
||||
<netty.version>4.1.43.Final</netty.version>
|
||||
<netty.version>4.1.45.Final</netty.version>
|
||||
<netty-tcnative.version>2.0.28.Final</netty-tcnative.version>
|
||||
<nio-multipart-parser.version>1.1.0</nio-multipart-parser.version>
|
||||
<pooled-jms.version>1.0.6</pooled-jms.version>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
* Copyright 2012-2020 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -26,6 +26,7 @@ import org.apache.catalina.core.AprLifecycleListener;
|
|||
import org.apache.catalina.core.StandardContext;
|
||||
import org.apache.catalina.startup.Tomcat;
|
||||
import org.apache.catalina.valves.RemoteIpValve;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.mockito.ArgumentCaptor;
|
||||
import org.mockito.InOrder;
|
||||
|
@ -155,4 +156,14 @@ public class TomcatReactiveWebServerFactoryTests extends AbstractReactiveWebServ
|
|||
assertThat(context.getClearReferencesThreadLocals()).isFalse();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore("gh-19702")
|
||||
public void compressionOfResponseToGetRequest() {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore("gh-19702")
|
||||
public void compressionOfResponseToPostRequest() {
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue