This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git
The following commit(s) were added to refs/heads/main by this push: new 813d336 Removed TSERV_WORKQ_THREADS property usage (#281) 813d336 is described below commit 813d336dbf8391576fbd821fd3d9986e5cfe3289 Author: Dave Marion <dlmar...@apache.org> AuthorDate: Wed Aug 7 04:00:31 2024 -0400 Removed TSERV_WORKQ_THREADS property usage (#281) Remove the property usage because it was removed in apache/accumulo#4747 This fixes #280 --- .../org/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 6253353..fdf5c30 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 @@ public class Config extends Test { 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 @@ public class Config extends Test { 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),