Browse Source

Use unpooled netty allocator during tests.

Closes #2087
pull/2076/merge
Mark Paluch 5 months ago
parent
commit
61035934e6
No known key found for this signature in database
GPG Key ID: 55BC6374BAA9D973
  1. 10
      pom.xml

10
pom.xml

@ -191,6 +191,11 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<io.netty.allocator.type>pooled</io.netty.allocator.type>
</systemProperties>
</configuration>
<executions> <executions>
<execution> <execution>
<id>default-test</id> <id>default-test</id>
@ -211,6 +216,11 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId> <artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<systemProperties>
<io.netty.allocator.type>pooled</io.netty.allocator.type>
</systemProperties>
</configuration>
<executions> <executions>
<execution> <execution>
<id>default-test</id> <id>default-test</id>

Loading…
Cancel
Save