rmdmattingly commented on code in PR #6506:
URL: https://github.com/apache/hbase/pull/6506#discussion_r2047774089


##########
hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupManager.java:
##########
@@ -146,13 +146,17 @@ public static void 
decorateRegionServerConfiguration(Configuration conf) {
         classes + "," + regionProcedureClass);
     }
     String coproc = conf.get(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY);
-    String regionObserverClass = BackupObserver.class.getName();
+    String observerClass = BackupObserver.class.getName();
     conf.set(CoprocessorHost.REGION_COPROCESSOR_CONF_KEY,
-      (coproc == null ? "" : coproc + ",") + regionObserverClass);
-    if (LOG.isDebugEnabled()) {
-      LOG.debug("Added region procedure manager: {}. Added region observer: 
{}",
-        regionProcedureClass, regionObserverClass);
-    }
+      (coproc == null ? "" : coproc + ",") + observerClass);
+
+    String masterCoProc = 
conf.get(CoprocessorHost.MASTER_COPROCESSOR_CONF_KEY);

Review Comment:
   Do you want to make this change? If not, I'm happy to ship this PR



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to