HBASE-24477 (addendum): Fix missing IA annotations in ConfigurationManager

Found this via failure in the nightly tests on branch-1
This commit is contained in:
Bharath Vissapragada 2020-06-01 08:59:37 -07:00
parent 4096925b98
commit cd0aaed929
No known key found for this signature in database
GPG Key ID: 18AE42A0B5A93FA7

View File

@ -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);