Repository: sentry Updated Branches: refs/heads/master 9da220abc -> 985f4ad59
SENTRY-1438: Move PolicyFiles from sentry-provider-file to sentry-core-common in V2 (Ke Jia via Dapeng Sun) Project: http://git-wip-us.apache.org/repos/asf/sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/sentry/commit/985f4ad5 Tree: http://git-wip-us.apache.org/repos/asf/sentry/tree/985f4ad5 Diff: http://git-wip-us.apache.org/repos/asf/sentry/diff/985f4ad5 Branch: refs/heads/master Commit: 985f4ad59e87d065a961e950be49fb29c7cd1302 Parents: 9da220a Author: Sun Dapeng <[email protected]> Authored: Mon Aug 8 10:49:37 2016 +0800 Committer: Sun Dapeng <[email protected]> Committed: Mon Aug 8 10:49:37 2016 +0800 ---------------------------------------------------------------------- .../java/org/apache/sentry/tests/e2e/hdfs/TestHDFSIntegration.java | 2 +- .../test/java/org/apache/sentry/tests/e2e/hive/TestSandboxOps.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sentry/blob/985f4ad5/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hdfs/TestHDFSIntegration.java ---------------------------------------------------------------------- diff --git a/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hdfs/TestHDFSIntegration.java b/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hdfs/TestHDFSIntegration.java index 8389832..a2aead0 100644 --- a/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hdfs/TestHDFSIntegration.java +++ b/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hdfs/TestHDFSIntegration.java @@ -351,7 +351,7 @@ public class TestHDFSIntegration { public Void run() throws Exception { System.setProperty(MiniDFSCluster.PROP_TEST_BUILD_DATA, "target/test/data"); hadoopConf = new HdfsConfiguration(); - hadoopConfconf.set(DFSConfigKeys.DFS_NAMENODE_INODE_ATTRIBUTES_PROVIDER_KEY, + hadoopConf.set(DFSConfigKeys.DFS_NAMENODE_INODE_ATTRIBUTES_PROVIDER_KEY, SentryINodeAttributesProvider.class.getName()); hadoopConf.setBoolean(DFSConfigKeys.DFS_NAMENODE_ACLS_ENABLED_KEY, true); hadoopConf.setInt(DFSConfigKeys.DFS_REPLICATION_KEY, 1); http://git-wip-us.apache.org/repos/asf/sentry/blob/985f4ad5/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hive/TestSandboxOps.java ---------------------------------------------------------------------- diff --git a/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hive/TestSandboxOps.java b/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hive/TestSandboxOps.java index 79f1792..202173c 100644 --- a/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hive/TestSandboxOps.java +++ b/sentry-tests/sentry-tests-hive-v2/src/test/java/org/apache/sentry/tests/e2e/hive/TestSandboxOps.java @@ -28,7 +28,7 @@ import java.sql.Statement; import org.apache.hadoop.fs.Path; import org.apache.sentry.core.common.utils.PolicyFile; -import org.apache.sentry.provider.file.PolicyFiles; +import org.apache.sentry.core.common.utils.PolicyFiles; import org.junit.Before; import org.junit.Test;
