brfrn169 commented on pull request #2630: URL: https://github.com/apache/hbase/pull/2630#issuecomment-733819400
Seems the failed UTs for TestAsyncTable are not related to this patch. But it looks like the root cause of the failed UTs are that we don't wait until AsyncTable.put() completes at the following lines: https://github.com/apache/hbase/blob/d81b54149390565960a3721cbd5f1bfd6a6de61d/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTable.java#L998 https://github.com/apache/hbase/blob/d81b54149390565960a3721cbd5f1bfd6a6de61d/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAsyncTable.java#L1055 We need to call get() method to wait until AsyncTable.put() completes as follows: ``` table.put(...).get(); ``` I will fix it and re-push it. ---------------------------------------------------------------- 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: [email protected]
