guluo2016 commented on code in PR #6279: URL: https://github.com/apache/hbase/pull/6279#discussion_r1778507695
########## hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/ProcedureExecutor.java: ########## @@ -2070,6 +2070,9 @@ private void execCompletionCleanup(Procedure<TEnvironment> proc) { // Catch NullPointerExceptions or similar errors... LOG.error("CODE-BUG: uncatched runtime exception for procedure: " + proc, e); } + // call schedulers completion cleanup, we have some special clean up logic in this method so if + // it throws any exceptions, we can not just ignore it, like the above procedure's cleanup + scheduler.completionCleanup(proc); Review Comment: Understood, thank you for your reply. -- 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: issues-unsubscr...@hbase.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org