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

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

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 33d2e0264c Add correct property versions (#3132)
33d2e0264c is described below

commit 33d2e0264c8bf54bc42919ca53cf4b141533dbf1
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 0c4de734cb..0adcb76d22 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
@@ -188,7 +188,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,
@@ -880,11 +880,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 "