NihalJain commented on code in PR #6783: URL: https://github.com/apache/hbase/pull/6783#discussion_r2028524911
########## hbase-http/src/main/java/org/apache/hadoop/hbase/http/HttpServer.java: ########## @@ -670,8 +665,9 @@ private void initializeWebServer(String name, String hostName, Configuration con // Check if disable stack trace property is configured if (!conf.getBoolean(HTTP_UI_SHOW_STACKTRACE_KEY, true)) { // Disable stack traces for server errors in UI - webServer.setErrorHandler(new ErrorHandler()); - webServer.getErrorHandler().setShowStacks(false); + ErrorHandler errorHanlder = new ErrorHandler(); + errorHanlder.setShowStacks(false); Review Comment: Marking as resolved -- 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