kevinrr888 commented on code in PR #5416: URL: https://github.com/apache/accumulo/pull/5416#discussion_r2007968694
########## server/manager/src/main/java/org/apache/accumulo/manager/Manager.java: ########## @@ -568,10 +573,13 @@ private class MigrationCleanupThread implements Runnable { @Override public void run() { while (stillManager()) { - if (!migrations.isEmpty()) { + // migrations are stored in the metadata tables which cannot be read until the + // TabletGroupWatchers are started + if (watchersStarted.get() && numMigrations() > 0) { Review Comment: There is probably something specific that needs to be executed in the `TabletGroupWatcher.run()` before this should be executed, but I'm not sure what... When `watchersStarted` is set to true will probably have to be changed. Currently is set after calling `start()` on all the watchers. -- 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