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 5d47ec961ebc0b631a62f16f4799fb5c7acceaee Author: Andor Molnar <[email protected]> AuthorDate: Fri Mar 13 14:59:10 2026 -0500 Spotbugs check --- .../apache/hadoop/hbase/security/access/AbstractReadOnlyController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/access/AbstractReadOnlyController.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/access/AbstractReadOnlyController.java index adb8efd59ca..f262eba7b93 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/access/AbstractReadOnlyController.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/access/AbstractReadOnlyController.java @@ -74,7 +74,7 @@ public abstract class AbstractReadOnlyController implements Coprocessor { "Active cluster file data does not match expected data. " + "Not deleting the file to avoid potential inconsistency. " + "Actual data: {}, Expected data: {}", - new String(actualClusterFileData), new String(expectedClusterFileData)); + actualClusterFileData, expectedClusterFileData); } } catch (FileNotFoundException e) { LOG.debug("Active cluster file does not exist at: {}. No need to delete.",
