Repository: incubator-atlas Updated Branches: refs/heads/branch-0.5-incubating c219798b1 -> d0fcfb4d9
ATLAS-15 remove specific version string as default property value (cherry picked from commit f4e4396) Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/d0fcfb4d Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/d0fcfb4d Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/d0fcfb4d Branch: refs/heads/branch-0.5-incubating Commit: d0fcfb4d9528792a77325fa73c18c7178071dadb Parents: c219798 Author: Jon Maron <[email protected]> Authored: Tue Jun 16 10:19:10 2015 -0700 Committer: Venkatesh Seetharam <[email protected]> Committed: Tue Jun 16 14:51:51 2015 -0700 ---------------------------------------------------------------------- .../java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java | 2 +- .../src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java | 2 +- .../src/test/java/org/apache/atlas/security/BaseSecurityTest.java | 2 +- .../org/apache/atlas/web/service/SecureEmbeddedServerITBase.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/d0fcfb4d/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java ---------------------------------------------------------------------- diff --git a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java index 0d7a49d..4669577 100644 --- a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java +++ b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/BaseSSLAndKerberosTest.java @@ -119,7 +119,7 @@ public class BaseSSLAndKerberosTest extends BaseSecurityTest { protected String getWarPath() { return String.format("/../../webapp/target/atlas-webapp-%s", - System.getProperty("project.version", "0.5-incubating")); + System.getProperty("project.version")); } protected HiveConf getHiveConf() { http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/d0fcfb4d/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java ---------------------------------------------------------------------- diff --git a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java index d3987f8..5c17b64 100755 --- a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java +++ b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/SSLHiveHookIT.java @@ -183,7 +183,7 @@ public class SSLHiveHookIT { protected String getWarPath() { return String.format("/../../webapp/target/atlas-webapp-%s", - System.getProperty("project.version", "0.5-incubating")); + System.getProperty("project.version")); } private HiveConf getHiveConf() { http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/d0fcfb4d/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java ---------------------------------------------------------------------- diff --git a/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java b/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java index 66d324a..598f56b 100644 --- a/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java +++ b/client/src/test/java/org/apache/atlas/security/BaseSecurityTest.java @@ -44,7 +44,7 @@ public class BaseSecurityTest { protected String getWarPath() { return String.format("/target/atlas-webapp-%s.war", - System.getProperty("release.version", "0.5-incubating")); + System.getProperty("release.version")); } protected void generateTestProperties(Properties props) throws ConfigurationException, IOException { http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/d0fcfb4d/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java ---------------------------------------------------------------------- diff --git a/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java b/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java index 2e08c19..db110ca 100755 --- a/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java +++ b/webapp/src/test/java/org/apache/atlas/web/service/SecureEmbeddedServerITBase.java @@ -186,7 +186,7 @@ public class SecureEmbeddedServerITBase { protected String getWarPath() { return String - .format("/target/atlas-webapp-%s", System.getProperty("project.version", "0.5-incubating")); + .format("/target/atlas-webapp-%s", System.getProperty("project.version")); } protected void setupCredentials() throws Exception {
