From 813d336dbf8391576fbd821fd3d9986e5cfe3289 Mon Sep 17 00:00:00 2001 From: Dave Marion Date: Wed, 7 Aug 2024 04:00:31 -0400 Subject: [PATCH] Removed TSERV_WORKQ_THREADS property usage (#281) Remove the property usage because it was removed in apache/accumulo#4747 This fixes #280 --- .../apache/accumulo/testing/randomwalk/concurrent/Config.java | 4 ---- 1 file changed, 4 deletions(-) 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 62533535..fdf5c309 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 @@ -65,9 +65,6 @@ static Setting s(Property property, long min, long max) { final Property TSERV_COMPACTION_SERVICE_DEFAULT_EXECUTORS_deprecated = Property.TSERV_COMPACTION_SERVICE_DEFAULT_EXECUTORS; - @SuppressWarnings("deprecation") - final Property TSERV_WORKQ_THREADS_deprecated = Property.TSERV_WORKQ_THREADS; - @SuppressWarnings("deprecation") final Property TSERV_TABLET_SPLIT_FINDMIDPOINT_MAXOPEN_deprecated = Property.TSERV_TABLET_SPLIT_FINDMIDPOINT_MAXOPEN; @@ -96,7 +93,6 @@ static Setting s(Property property, long min, long max) { s(Property.TSERV_WAL_SORT_BUFFER_SIZE, 1024 * 1024, 1024 * 1024 * 1024L), s(TSERV_TABLET_SPLIT_FINDMIDPOINT_MAXOPEN_deprecated, 5, 100), s(Property.TSERV_WAL_BLOCKSIZE, 1024 * 1024,1024 * 1024 * 1024 * 10L), - s(TSERV_WORKQ_THREADS_deprecated, 1, 10), s(Property.MANAGER_BULK_TIMEOUT, 10, 600), s(Property.MANAGER_FATE_THREADPOOL_SIZE, 1, 100), s(Property.MANAGER_RECOVERY_DELAY, 0, 100),