HBASE-8989 TestFromClientSideWithCoprocessor.testClientPoolThreadLocal fails

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1504642 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2013-07-18 20:34:29 +00:00
parent 018b22366d
commit b5ff002a1a
1 changed files with 3 additions and 3 deletions

View File

@ -4603,7 +4603,7 @@ public class TestFromClientSide {
}
}
@Test
@Ignore ("Flakey: HBASE-8989") @Test
public void testClientPoolThreadLocal() throws IOException {
final byte[] tableName = Bytes.toBytes("testClientPoolThreadLocal");
@ -4657,8 +4657,8 @@ public class TestFromClientSide {
NavigableMap<Long, byte[]> navigableMap = result.getMap()
.get(FAMILY).get(QUALIFIER);
assertEquals("The number of versions of '" + FAMILY + ":"
+ QUALIFIER + " did not match " + versionsCopy, versionsCopy,
assertEquals("The number of versions of '" + Bytes.toString(FAMILY) + ":"
+ Bytes.toString(QUALIFIER) + " did not match " + versionsCopy, versionsCopy,
navigableMap.size());
for (Map.Entry<Long, byte[]> entry : navigableMap.entrySet()) {
assertTrue("The value at time " + entry.getKey()