Github user vvysotskyi commented on a diff in the pull request:
https://github.com/apache/drill/pull/942#discussion_r140213645
--- Diff: contrib/storage-hbase/src/test/resources/hbase-site.xml ---
@@ -66,15 +66,13 @@
Default is 10.
</description>
</property>
-<!--
- <property>
+ <property>
--- End diff --
When tests are run on the cluster where HBase is running, Drill unit tests
could not create MiniHBaseCluster:
```
ERROR o.a.hadoop.hbase.MiniHBaseCluster - Error starting cluster
java.lang.RuntimeException: Failed construction of Master: class
org.apache.hadoop.hbase.master.HMasterAddress already in use
```
We should enable this property to avoid this error.
---