Skip to content

Commit 7e5dfdc

Browse files
committed
Disabling the Fork Option
Each test setups a Redis server before test class and tears it down after them. Since each Redis server listens on port 6379, we can't let them to listen to the same port with parallel options.
1 parent ff853f6 commit 7e5dfdc

File tree

1 file changed

+2
-1
lines changed
  • persistence-modules/spring-data-redis

1 file changed

+2
-1
lines changed

persistence-modules/spring-data-redis/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@
8787
<version>${maven-surefire-plugin.version}</version>
8888
<configuration>
8989
<verbose>true</verbose>
90-
<fork>true</fork>
90+
<fork>false</fork>
91+
<forkCount>0</forkCount>
9192
<argLine>-Xmx1024m</argLine>
9293
</configuration>
9394
</plugin>

0 commit comments

Comments
 (0)