HBASE-21017 Add debug log for finding out race where we update region state to OPEN accidentally

This commit is contained in:
Duo Zhang 2018-08-24 11:45:30 +08:00
parent aac1a70147
commit a452487a9b
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ public class RegionStateStore {
.setType(Cell.Type.Put)
.setValue(Bytes.toBytes(state.name()))
.build());
LOG.info(info.toString());
LOG.info(info.toString(), new Exception());
updateRegionLocation(regionInfo, state, put);
}