This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch CAMEL-18988/fix-leaks-p2 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 38b85fe4c74ad52aac14b907d89cfbdb25b0b805 Author: Nicolas Filotto <[email protected]> AuthorDate: Thu Feb 23 10:31:56 2023 +0100 CAMEL-18988: Reduce the max pool size to limit the memory impact --- core/camel-core/src/test/resources/junit-platform.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/camel-core/src/test/resources/junit-platform.properties b/core/camel-core/src/test/resources/junit-platform.properties index 808642f9f67..6f38e83b4cc 100644 --- a/core/camel-core/src/test/resources/junit-platform.properties +++ b/core/camel-core/src/test/resources/junit-platform.properties @@ -20,5 +20,5 @@ junit.jupiter.execution.parallel.mode.default = same_thread junit.jupiter.execution.parallel.mode.classes.default = concurrent junit.jupiter.execution.parallel.config.strategy = custom junit.jupiter.execution.parallel.config.custom.parallelism = 4 -junit.jupiter.execution.parallel.config.custom.maxPoolSize = 1024 +junit.jupiter.execution.parallel.config.custom.maxPoolSize = 512 junit.jupiter.execution.parallel.config.custom.class=org.apache.camel.CamelParallelExecutionStrategy
