proper concurrency in x3 test

hopefully
This commit is contained in:
2024-06-29 17:16:15 +02:00
parent 922a2ed56e
commit bb5dec33b3

View File

@@ -46,7 +46,9 @@ public class DhfsFusex3IT {
.copy("/app", "/app")
.cmd("java", "-Xmx128M", "--add-exports", "java.base/sun.nio.ch=ALL-UNNAMED",
"-Ddhfs.objects.distributed.peerdiscovery.interval=100",
"-Ddhfs.objects.distributed.invalidation.delay=100", "-jar", "/app/quarkus-run.jar")
"-Ddhfs.objects.distributed.invalidation.delay=100",
"-Djava.util.concurrent.ForkJoinPool.common.parallelism=4",
"-jar", "/app/quarkus-run.jar")
.build())
.withFileFromPath("/app", Paths.get(buildPath, "quarkus-app"));
container1 = new GenericContainer<>(image)