HBASE-11982 Bootstraping hbase:meta table creates a WAL file in region dir (Enis)

This commit is contained in:
stack 2014-09-19 14:34:15 -07:00
parent 288ffe6563
commit 4877ee8788
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ public class MasterFileSystem {
HRegionInfo metaHRI = new HRegionInfo(HRegionInfo.FIRST_META_REGIONINFO);
setInfoFamilyCachingForMeta(false);
HRegion meta = HRegion.createHRegion(metaHRI, rd, c,
HTableDescriptor.META_TABLEDESC);
HTableDescriptor.META_TABLEDESC, null, true, true);
setInfoFamilyCachingForMeta(true);
HRegion.closeHRegion(meta);
} catch (IOException e) {