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


The following commit(s) were added to refs/heads/HBASE-29081_rebased by this 
push:
     new 520b89a976c Spotbugs fix
520b89a976c is described below

commit 520b89a976c8a01191bf3820dea4e79324ea732b
Author: Andor Molnar <[email protected]>
AuthorDate: Thu Mar 12 16:00:21 2026 -0500

    Spotbugs fix
---
 .../hadoop/hbase/security/access/AbstractReadOnlyController.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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..716fc1b19f6 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
@@ -73,8 +73,8 @@ public abstract class AbstractReadOnlyController implements 
Coprocessor {
             LOG.debug(
               "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));
+                + "Actual data: {}, Expected data: {}", actualClusterFileData,
+              expectedClusterFileData);
           }
         } catch (FileNotFoundException e) {
           LOG.debug("Active cluster file does not exist at: {}. No need to 
delete.",

Reply via email to