From 1c184088bdd9189c041d00207432f08dfef875bb Mon Sep 17 00:00:00 2001 From: Ewelina Fiedorowicz Date: Wed, 29 Nov 2023 15:01:50 +0100 Subject: [PATCH] JPERF-976: Decrease maxNodeCount to 2 Reduce the scope of the test to avoid `You are running out of disk space. The runner will stop working when the machine runs out of disk space` error. ` --- .../tools/hardware/HardwareRecommendationEngineIT.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/kotlin/com/atlassian/performance/tools/hardware/HardwareRecommendationEngineIT.kt b/src/test/kotlin/com/atlassian/performance/tools/hardware/HardwareRecommendationEngineIT.kt index 05ed71e..94bfc29 100644 --- a/src/test/kotlin/com/atlassian/performance/tools/hardware/HardwareRecommendationEngineIT.kt +++ b/src/test/kotlin/com/atlassian/performance/tools/hardware/HardwareRecommendationEngineIT.kt @@ -46,7 +46,7 @@ class HardwareRecommendationEngineIT { // test the hard node limit kicks in before the (relaxed) behaviour limits minApdexGain = 0.01, minThroughputGain = TemporalRate(2.0, Duration.ofSeconds(1)), - maxNodeCount = 3 + maxNodeCount = 2 ) }