kevinrr888 commented on code in PR #5662: URL: https://github.com/apache/accumulo/pull/5662#discussion_r2180938421
########## server/base/src/main/java/org/apache/accumulo/server/AbstractServer.java: ########## @@ -302,6 +309,17 @@ public String getBindAddress() { return bindAddress; } + protected TServer getThriftServer() { + if (thriftServer == null) { + return null; + } + return thriftServer.server; + } + + protected ServerAddress getThriftServerAddress() { + return thriftServer; + } + protected void updateAdvertiseAddress(HostAndPort thriftBindAddress) { Review Comment: Marking this as resolved, but continued discussion on https://github.com/apache/accumulo/pull/5662#discussion_r2180920703 -- 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: notifications-unsubscr...@accumulo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org