[
https://issues.apache.org/jira/browse/HBASE-18069?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16019545#comment-16019545
]
Hudson commented on HBASE-18069:
--------------------------------
SUCCESS: Integrated in Jenkins build HBase-1.4 #742 (See
[https://builds.apache.org/job/HBase-1.4/742/])
HBASE-18069 Fix flaky test (zghao: rev 4249a1f3d92a3b1cc7485e7aaaa289adb149688b)
* (edit)
hbase-server/src/test/java/org/apache/hadoop/hbase/client/replication/TestReplicationAdminWithClusters.java
> Fix flaky test
> TestReplicationAdminWithClusters#testDisableAndEnableReplication
> -------------------------------------------------------------------------------
>
> Key: HBASE-18069
> URL: https://issues.apache.org/jira/browse/HBASE-18069
> Project: HBase
> Issue Type: Bug
> Components: test
> Reporter: Chia-Ping Tsai
> Assignee: Guanghao Zhang
> Priority: Trivial
> Labels: beginner
> Fix For: 2.0.0, 1.4.0
>
> Attachments: HBASE-18069.patch
>
>
> If we run testDisableAndEnableReplication, we will get the following error
> message.
> {code}
> testDisableAndEnableReplication(org.apache.hadoop.hbase.client.replication.TestReplicationAdminWithClusters)
> Time elapsed: 2.046 sec <<< FAILURE!
> java.lang.AssertionError: expected:<1> but was:<0>
> at org.junit.Assert.fail(Assert.java:88)
> at org.junit.Assert.failNotEquals(Assert.java:834)
> at org.junit.Assert.assertEquals(Assert.java:645)
> at org.junit.Assert.assertEquals(Assert.java:631)
> at
> org.apache.hadoop.hbase.client.replication.TestReplicationAdminWithClusters.testDisableAndEnableReplication(TestReplicationAdminWithClusters.java:160)
> {code}
> The critical code is shown below.
> {code}
> admin1.disableTableReplication(tableName);
> HTableDescriptor table = admin1.getTableDescriptor(tableName);
> for (HColumnDescriptor fam : table.getColumnFamilies()) {
> assertEquals(fam.getScope(), HConstants.REPLICATION_SCOPE_LOCAL);
> }
> table = admin2.getTableDescriptor(tableName);
> for (HColumnDescriptor fam : table.getColumnFamilies()) {
> assertEquals(fam.getScope(), HConstants.REPLICATION_SCOPE_LOCAL);
> }
> {code}
> Is HTD got from admin2 affected by admin1? I don't think so. We should remove
> the related assertion.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)