HBASE-2645 HLog writer can do 1-2 sync operations after lease has been recovered for split process

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1410651 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2012-11-17 00:33:15 +00:00
parent 79b341459a
commit 4cdaf84ef8
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ public class TestHLogSplit {
// Create fake maping user to group and set it to the conf.
Map<String, String []> u2g_map = new HashMap<String, String []>(2);
ROBBER = User.getCurrent().getName() + "-robber";
ZOMBIE = User.getCurrent().getName() + "-robber";
ZOMBIE = User.getCurrent().getName() + "-zombie";
u2g_map.put(ROBBER, GROUP);
u2g_map.put(ZOMBIE, GROUP);
DFSTestUtil.updateConfWithFakeGroupMapping(TEST_UTIL.getConfiguration(), u2g_map);