HBASE-23694 After RegionProcedureStore completes migration of WALProcedureStore, still running WALProcedureStore.syncThread keeps trying to delete now inexistent log files. (#1048)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
Wellington Ramos Chevreuil 2020-01-16 06:12:37 +00:00 committed by Duo Zhang
parent 31b4fbdee5
commit 8b5f467716
1 changed files with 1 additions and 0 deletions

View File

@ -364,6 +364,7 @@ public class RegionProcedureStore extends ProcedureStoreBase {
throw new IOException("Failed to delete the WALProcedureStore migrated proc wal directory " +
procWALDir);
}
store.stop(true);
LOG.info("Migration of WALProcedureStore finished");
}