This is an automated email from the ASF dual-hosted git repository. andor pushed a commit to branch HBASE-29081_rebased in repository https://gitbox.apache.org/repos/asf/hbase.git
commit 888d1342f46bb05a55d68d26248b235b34bb536a Author: Kota-SH <[email protected]> AuthorDate: Mon Sep 29 16:09:40 2025 -0500 HBASE-29621: Remove the leading whitespace in the active.cluster.suffix.id filename (#7338) --- hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java index 8020acb20b7..4ed6d3dc9d5 100644 --- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java +++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java @@ -1688,7 +1688,7 @@ public final class HConstants { public final static boolean HBASE_GLOBAL_READONLY_ENABLED_DEFAULT = false; /** name of the file having active cluster suffix */ - public static final String ACTIVE_CLUSTER_SUFFIX_FILE_NAME = " active.cluster.suffix.id"; + public static final String ACTIVE_CLUSTER_SUFFIX_FILE_NAME = "active.cluster.suffix.id"; private HConstants() { // Can't be instantiated with this ctor.
