HBASE-17712 Addendum modify log message

This commit is contained in:
zhangduo 2017-03-10 16:01:35 +08:00
parent ed6e5d6999
commit e0365df9d6
1 changed files with 2 additions and 2 deletions

View File

@ -5864,9 +5864,9 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver, Regi
}
private void handleFileNotFound(Throwable fnfe) {
// Try reopenning the region since we have lost some storefiles.
// Try reopening the region since we have lost some storefiles.
// See HBASE-17712 for more details.
LOG.warn("A store file got lost", fnfe);
LOG.warn("A store file got lost, so close and reopen region", fnfe);
if (regionUnassigner != null) {
regionUnassigner.unassign();
}