You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by GitBox <gi...@apache.org> on 2019/05/28 09:07:19 UTC

[GitHub] [hbase] Apache9 commented on a change in pull request #259: HBASE-22003 Fix flaky test TestVerifyReplication.testHBase14905

Apache9 commented on a change in pull request #259: HBASE-22003 Fix flaky test TestVerifyReplication.testHBase14905
URL: https://github.com/apache/hbase/pull/259#discussion_r288001412
 
 

 ##########
 File path: hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/replication/TestVerifyReplication.java
 ##########
 @@ -252,11 +252,12 @@ public void testHBase14905() throws Exception {
     // normal Batch tests
     byte[] qualifierName = Bytes.toBytes("f1");
     Put put = new Put(Bytes.toBytes("r1"));
-    put.addColumn(famName, qualifierName, Bytes.toBytes("v1002"));
+    long ts = System.currentTimeMillis();
+    put.addColumn(famName, qualifierName, ts+1, Bytes.toBytes("v1002"));
 
 Review comment:
   Formatting issue?`ts+1` ->`ts + 1`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services