Repository: falcon Updated Branches: refs/heads/master f0928981b -> 4e33639fb
FALCON-998 Removing 'store' hard coded in regression test contributed by Pragya M Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/4e33639f Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/4e33639f Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/4e33639f Branch: refs/heads/master Commit: 4e33639fb51f2d103d6f3458b7e3637622ec969b Parents: f092898 Author: Samarth Gupta <[email protected]> Authored: Wed Jan 21 10:15:12 2015 +0530 Committer: Samarth Gupta <[email protected]> Committed: Wed Jan 21 10:15:12 2015 +0530 ---------------------------------------------------------------------- falcon-regression/CHANGES.txt | 2 ++ .../main/java/org/apache/falcon/regression/core/util/Util.java | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/4e33639f/falcon-regression/CHANGES.txt ---------------------------------------------------------------------- diff --git a/falcon-regression/CHANGES.txt b/falcon-regression/CHANGES.txt index 80a4f94..8e16ac7 100644 --- a/falcon-regression/CHANGES.txt +++ b/falcon-regression/CHANGES.txt @@ -39,6 +39,8 @@ Trunk (Unreleased) via Samarth Gupta) IMPROVEMENTS + + FALCON-998 Removing 'store' hard coded in regression test (Pragya M via Samarth Gupta) FALCON-989 add timeout to EmbeddedPigScriptTest in falcon regression (Samarth Gupta) http://git-wip-us.apache.org/repos/asf/falcon/blob/4e33639f/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/Util.java ---------------------------------------------------------------------- diff --git a/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/Util.java b/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/Util.java index 6f3fb93..58e3691 100644 --- a/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/Util.java +++ b/falcon-regression/merlin-core/src/main/java/org/apache/falcon/regression/core/util/Util.java @@ -178,8 +178,8 @@ public final class Util { new Path(helper.getStoreLocation() + subPath)); } else { return ExecUtil.runRemoteScriptAsSudo(helper.getQaHost(), helper.getUsername(), - helper.getPassword(), "ls " + helper.getStoreLocation() + "/store" + subPath, - helper.getUsername(), helper.getIdentityFile()); + helper.getPassword(), "ls " + helper.getStoreLocation() + subPath, + helper.getUsername(), helper.getIdentityFile()); } }
