From c99430413c37571fb2a835b4cc34fa33543a47d1 Mon Sep 17 00:00:00 2001 From: Dave Marion Date: Tue, 8 Apr 2025 18:59:11 +0000 Subject: [PATCH] Removed MANAGER_FATE_THREADPOOL_SIZE from randomwalk config MANAGER_FATE_THREADPOOL_SIZE was deprecated in 4.0.0 and replaced with a complex object. Removed that property from the Config class in RandomWalk --- .../apache/accumulo/testing/randomwalk/concurrent/Config.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java index 01125cf3..c6978519 100644 --- a/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java +++ b/src/main/java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java @@ -78,7 +78,6 @@ static Setting s(Property property, long min, long max) { s(Property.TSERV_WAL_SORT_BUFFER_SIZE, 1024 * 1024, 1024 * 1024 * 1024L), s(Property.TSERV_WAL_BLOCKSIZE, 1024 * 1024,1024 * 1024 * 1024 * 10L), s(Property.MANAGER_BULK_TIMEOUT, 10, 600), - s(Property.MANAGER_FATE_THREADPOOL_SIZE, 1, 100), s(Property.MANAGER_RECOVERY_DELAY, 0, 100), s(Property.MANAGER_LEASE_RECOVERY_WAITING_PERIOD, 0, 10), s(Property.MANAGER_THREADCHECK, 100, 10000),