This is an automated email from the ASF dual-hosted git repository. domgarguilo pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
from fc4bc695fd Add getData methods to Key that populate ArrayByteSequence (#4779) add 41fd482771 Replace OpTimer with new Timer class (#4784) new 3e6c5be1b8 Merge remote-tracking branch 'upstream/2.1' The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../accumulo/core/clientImpl/ClientContext.java | 17 +-- .../core/clientImpl/NamespaceOperationsImpl.java | 18 +-- .../core/clientImpl/RootTabletLocator.java | 10 +- .../core/clientImpl/TableOperationsImpl.java | 24 ++- .../core/clientImpl/TabletLocatorImpl.java | 24 ++- .../TabletServerBatchReaderIterator.java | 15 +- .../accumulo/core/clientImpl/ThriftScanner.java | 28 ++-- .../core/metadata/MetadataLocationObtainer.java | 12 +- .../org/apache/accumulo/core/util/OpTimer.java | 131 ---------------- .../java/org/apache/accumulo/core/util/Timer.java | 91 +++++++++++ .../org/apache/accumulo/core/util/OpTimerTest.java | 168 --------------------- .../org/apache/accumulo/core/util/TimerTest.java | 109 +++++++++++++ 12 files changed, 268 insertions(+), 379 deletions(-) delete mode 100644 core/src/main/java/org/apache/accumulo/core/util/OpTimer.java create mode 100644 core/src/main/java/org/apache/accumulo/core/util/Timer.java delete mode 100644 core/src/test/java/org/apache/accumulo/core/util/OpTimerTest.java create mode 100644 core/src/test/java/org/apache/accumulo/core/util/TimerTest.java