This is an automated email from the ASF dual-hosted git repository. dlmarion 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 f701218 Deprecated property was removed in Accumulo, resolved compilation issue (#258) f701218 is described below commit f701218d5146c77d9b2bd695d825377c93cfd7ec Author: Dave Marion <dlmar...@apache.org> AuthorDate: Tue Feb 21 07:44:44 2023 -0500 Deprecated property was removed in Accumulo, resolved compilation issue (#258) --- .../java/org/apache/accumulo/testing/randomwalk/concurrent/Config.java | 3 +-- 1 file changed, 1 insertion(+), 2 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 61e372b..bea6fd9 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 @@ -54,8 +54,7 @@ public class Config extends Test { return new Setting(property, min, max); } - @SuppressWarnings("deprecation") - final Property TSERV_READ_AHEAD_MAXCONCURRENT_deprecated = Property.TSERV_READ_AHEAD_MAXCONCURRENT; + final Property TSERV_READ_AHEAD_MAXCONCURRENT_deprecated = Property.TSERV_SCAN_EXECUTORS_DEFAULT_THREADS; // @formatter:off final Setting[] settings = { s(Property.TSERV_BLOOM_LOAD_MAXCONCURRENT, 1, 10),