BiteTheDDDDt commented on a change in pull request #6323: URL: https://github.com/apache/incubator-doris/pull/6323#discussion_r677152558
########## File path: fe/fe-core/src/main/java/org/apache/doris/catalog/Catalog.java ########## @@ -7109,4 +7113,28 @@ public void onErasePartition(Partition partition) { } } } + + public void cleanTrash(CleanTrashStmt stmt) { + List<Backend> backends = stmt.getBackends(); + for (Backend backend : backends){ + BackendService.Client client = null; + TNetworkAddress address = null; + boolean ok = false; + try { + long start = System.currentTimeMillis(); Review comment: > > > The variable start is not used later. fixed -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org