keith-turner commented on code in PR #5531: URL: https://github.com/apache/accumulo/pull/5531#discussion_r2072045712
########## server/manager/src/main/java/org/apache/accumulo/manager/Manager.java: ########## @@ -638,6 +638,43 @@ public void run() { */ private Map<DataLevel,Set<KeyExtent>> partitionMigrations() { final Map<DataLevel,Set<KeyExtent>> partitionedMigrations = new EnumMap<>(DataLevel.class); + + // Don't try to check migrations if the Root and Metadata + // tables are not hosted. + boolean skipMigrationCheck = false; Review Comment: Would be better to structure the code such that it ok if the thread gets stuck trying to read migrations. -- 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