You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2022/12/17 22:38:58 UTC

[accumulo] branch 2.1 updated: Add correct property versions (#3132)

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

ctubbsii 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 c8e1500a69 Add correct property versions (#3132)
c8e1500a69 is described below

commit c8e1500a69f9c52e9eba58b1407b9ccc86d41739
Author: Daniel Roberts <dd...@gmail.com>
AuthorDate: Sat Dec 17 11:57:32 2022 -0500

    Add correct property versions (#3132)
    
    Set property versions to their correct "2.1.0" context.
---
 core/src/main/java/org/apache/accumulo/core/conf/Property.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java
index 4e7760c68e..0b74ddb79e 100644
--- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java
+++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java
@@ -190,7 +190,7 @@ public enum Property {
       "The class which provides crypto services for on-disk file encryption. The default does nothing. To enable "
           + "encryption, replace this classname with an implementation of the"
           + "org.apache.accumulo.core.spi.crypto.CryptoFactory interface.",
-      "X.X.X"),
+      "2.1.0"),
 
   // general properties
   GENERAL_PREFIX("general.", null, PropertyType.PREFIX,
@@ -1033,11 +1033,11 @@ public enum Property {
   // Crypto-related properties
   @Experimental
   TABLE_CRYPTO_PREFIX("table.crypto.opts.", null, PropertyType.PREFIX,
-      "Properties related to on-disk file encryption.", "X.X.X"),
+      "Properties related to on-disk file encryption.", "2.1.0"),
   @Experimental
   @Sensitive
   TABLE_CRYPTO_SENSITIVE_PREFIX("table.crypto.opts.sensitive.", null, PropertyType.PREFIX,
-      "Sensitive properties related to on-disk file encryption.", "X.X.X"),
+      "Sensitive properties related to on-disk file encryption.", "2.1.0"),
   TABLE_SCAN_DISPATCHER("table.scan.dispatcher", SimpleScanDispatcher.class.getName(),
       PropertyType.CLASSNAME,
       "This class is used to dynamically dispatch scans to configured scan executors.  Configured "