This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new 7ad91eb32a adds missing since tags (#3275)
7ad91eb32a is described below

commit 7ad91eb32acf7c7c3e0413e24d8526f6cae036ba
Author: Keith Turner <ktur...@apache.org>
AuthorDate: Tue Apr 4 10:47:16 2023 -0400

    adds missing since tags (#3275)
---
 core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java     | 1 +
 .../java/org/apache/accumulo/hadoop/mapreduce/InputFormatBuilder.java   | 2 ++
 2 files changed, 3 insertions(+)

diff --git 
a/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java 
b/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
index 5270c45221..13bd9c17fa 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
@@ -50,6 +50,7 @@ public interface ScannerBase extends 
Iterable<Entry<Key,Value>>, AutoCloseable {
    * EVENTUAL means that the scanner may not see the latest data that was 
written to a TabletServer,
    * but may instead see an older version of data.
    *
+   * @since 2.1.0
    */
   enum ConsistencyLevel {
     IMMEDIATE, EVENTUAL
diff --git 
a/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/InputFormatBuilder.java
 
b/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/InputFormatBuilder.java
index c3140e86b3..e00ddd3f22 100644
--- 
a/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/InputFormatBuilder.java
+++ 
b/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/InputFormatBuilder.java
@@ -232,6 +232,8 @@ public interface InputFormatBuilder {
 
     /**
      * Enables the user to set the consistency level
+     *
+     * @since 2.1.0
      */
     InputFormatOptions<T> consistencyLevel(ConsistencyLevel level);
   }

Reply via email to