Repository: incubator-atlas
Updated Branches:
  refs/heads/master 33354e328 -> 334429a83


ATLAS-682 Set HBase root dir to be relative to test target directory for 
HBaseBasedAuditRepositoryTest (shwethags via yhemanth)


Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/334429a8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/334429a8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/334429a8

Branch: refs/heads/master
Commit: 334429a83cdc5052b0ec6f050df804b0bf75bba5
Parents: 33354e3
Author: Hemanth Yamijala <[email protected]>
Authored: Fri May 6 12:55:25 2016 +0530
Committer: Hemanth Yamijala <[email protected]>
Committed: Fri May 6 12:55:25 2016 +0530

----------------------------------------------------------------------
 release-log.txt                                                    | 1 +
 .../java/org/apache/atlas/repository/audit/HBaseTestUtils.java     | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/334429a8/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index f523b1b..a2de92a 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -18,6 +18,7 @@ ATLAS-409 Atlas will not import avro tables with schema read 
from a file (dosset
 ATLAS-379 Create sqoop and falcon metadata addons 
(venkatnrangan,bvellanki,sowmyaramesh via shwethags)
 
 ALL CHANGES:
+ATLAS-682 Set HBase root dir to be relative to test target directory for 
HBaseBasedAuditRepositoryTest (shwethags via yhemanth)
 ATLAS-742 Avoid downloading hbase multiple times (shwethags via yhemanth)
 ATLAS-659 atlas_start fails on Windows (dkantor via shwethags)
 ATLAS-732 Dashboard v2 build fails on Windows (vmadugun via yhemanth)

http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/334429a8/repository/src/test/java/org/apache/atlas/repository/audit/HBaseTestUtils.java
----------------------------------------------------------------------
diff --git 
a/repository/src/test/java/org/apache/atlas/repository/audit/HBaseTestUtils.java
 
b/repository/src/test/java/org/apache/atlas/repository/audit/HBaseTestUtils.java
index 84d7bab..984acfe 100644
--- 
a/repository/src/test/java/org/apache/atlas/repository/audit/HBaseTestUtils.java
+++ 
b/repository/src/test/java/org/apache/atlas/repository/audit/HBaseTestUtils.java
@@ -33,7 +33,7 @@ public class HBaseTestUtils {
     public static void startCluster() throws Exception {
         Configuration hbaseConf =
                 
HBaseBasedAuditRepository.getHBaseConfiguration(ApplicationProperties.get());
-        hbaseTestUtility = new HBaseTestingUtility(hbaseConf);
+        hbaseTestUtility = HBaseTestingUtility.createLocalHTU(hbaseConf);
         int zkPort = hbaseConf.getInt("hbase.zookeeper.property.clientPort", 
19026);
         hbaseTestUtility.startMiniZKCluster(1, zkPort);
 

Reply via email to