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:
parent
79b341459a
commit
4cdaf84ef8
|
@ -140,7 +140,7 @@ public class TestHLogSplit {
|
||||||
// Create fake maping user to group and set it to the conf.
|
// Create fake maping user to group and set it to the conf.
|
||||||
Map<String, String []> u2g_map = new HashMap<String, String []>(2);
|
Map<String, String []> u2g_map = new HashMap<String, String []>(2);
|
||||||
ROBBER = User.getCurrent().getName() + "-robber";
|
ROBBER = User.getCurrent().getName() + "-robber";
|
||||||
ZOMBIE = User.getCurrent().getName() + "-robber";
|
ZOMBIE = User.getCurrent().getName() + "-zombie";
|
||||||
u2g_map.put(ROBBER, GROUP);
|
u2g_map.put(ROBBER, GROUP);
|
||||||
u2g_map.put(ZOMBIE, GROUP);
|
u2g_map.put(ZOMBIE, GROUP);
|
||||||
DFSTestUtil.updateConfWithFakeGroupMapping(TEST_UTIL.getConfiguration(), u2g_map);
|
DFSTestUtil.updateConfWithFakeGroupMapping(TEST_UTIL.getConfiguration(), u2g_map);
|
||||||
|
|
Loading…
Reference in New Issue