From 3e8861f00100cbee45c82b7f1de41a13ca96b662 Mon Sep 17 00:00:00 2001 From: John Blum Date: Mon, 17 Oct 2022 18:27:31 -0700 Subject: [PATCH] Set maxParallelForks to 4 while running SDG tests. Resolves #623. --- spring-data-geode/spring-data-geode.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-data-geode/spring-data-geode.gradle b/spring-data-geode/spring-data-geode.gradle index e930e112..a88acac1 100644 --- a/spring-data-geode/spring-data-geode.gradle +++ b/spring-data-geode/spring-data-geode.gradle @@ -72,7 +72,7 @@ dependencies { test { forkEvery = 1 - maxParallelForks = 8 + maxParallelForks = 4 //include "**/*Tests.java", "**/*Test.java" systemProperties['java.util.logging.config.file'] = "${project.projectDir}/src/test/resources/java-util-logging.properties"