You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bh...@apache.org on 2020/06/01 16:03:57 UTC

[hbase] branch branch-1 updated: HBASE-24477 (addendum): Fix missing IA annotations in ConfigurationManager

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

bharathv pushed a commit to branch branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-1 by this push:
     new cd0aaed  HBASE-24477 (addendum): Fix missing IA annotations in ConfigurationManager
cd0aaed is described below

commit cd0aaed929734525cd95ec52bbf525159200d13a
Author: Bharath Vissapragada <bh...@apache.org>
AuthorDate: Mon Jun 1 08:59:37 2020 -0700

    HBASE-24477 (addendum): Fix missing IA annotations in ConfigurationManager
    
    Found this via failure in the nightly tests on branch-1
---
 .../main/java/org/apache/hadoop/hbase/conf/ConfigurationManager.java  | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/conf/ConfigurationManager.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/conf/ConfigurationManager.java
index bd98eef..040c37f 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/conf/ConfigurationManager.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/conf/ConfigurationManager.java
@@ -23,6 +23,8 @@ import java.util.Collections;
 import java.util.Set;
 import java.util.WeakHashMap;
 import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.classification.InterfaceAudience;
+import org.apache.hadoop.hbase.classification.InterfaceStability;
 
 /**
  * Maintains the set of all the classes which would like to get notified
@@ -64,6 +66,8 @@ import org.apache.hadoop.conf.Configuration;
  *    automatically collected during GC. But nonetheless, it is still a good
  *    practice to deregister your observer, whenever possible.
  */
+@InterfaceAudience.Private
+@InterfaceStability.Evolving
 public class ConfigurationManager {
   private static final Log LOG = LogFactory.getLog(ConfigurationManager.class);