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.git
commit cbdc452b4594c7459fffd81315db10df081beee3 Merge: 3c65bef273 ae603b67da Author: Dave Marion <[email protected]> AuthorDate: Wed Nov 20 21:16:47 2024 +0000 Merge branch '3.1' .../src/main/java/org/apache/accumulo/core/conf/Property.java | 10 +--------- .../src/main/java/org/apache/accumulo/monitor/Monitor.java | 11 ----------- .../accumulo/monitor/rest/tservers/TabletServerResource.java | 3 +-- 3 files changed, 2 insertions(+), 22 deletions(-) diff --cc server/monitor/src/main/java/org/apache/accumulo/monitor/Monitor.java index e8131e894a,f25aa8f545..cb2b4e8a4c --- a/server/monitor/src/main/java/org/apache/accumulo/monitor/Monitor.java +++ b/server/monitor/src/main/java/org/apache/accumulo/monitor/Monitor.java @@@ -126,14 -123,8 +125,8 @@@ public class Monitor extends AbstractSe } Monitor(ConfigOpts opts, String[] args) { - super("monitor", opts, args); + super("monitor", opts, ServerContext::new, args); START_TIME = System.currentTimeMillis(); - // Using site configuration on purpose. We want to get the value from - // accumulo.properties file local to the Monitor. We don't want to - // enable someone to change this property dynamically and expose - // information. - obfuscateExtents = - getContext().getSiteConfiguration().getBoolean(Property.MONITOR_OBFUSCATE_EXTENTS); } private final AtomicLong lastRecalc = new AtomicLong(0L);
