PHOENIX-4510 Fix performance.py issue in not finding tests jar (Artem Ervits)
Signed-off-by: Josh Elser <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/3cc1ad19 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/3cc1ad19 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/3cc1ad19 Branch: refs/heads/4.x-cdh5.11.2 Commit: 3cc1ad19aae893465432a8cbfe26f8022e7e2c32 Parents: d8e5f95 Author: Josh Elser <[email protected]> Authored: Wed Jan 3 17:22:28 2018 +0000 Committer: Pedro Boado <[email protected]> Committed: Wed Jan 31 22:24:48 2018 +0000 ---------------------------------------------------------------------- bin/phoenix_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/3cc1ad19/bin/phoenix_utils.py ---------------------------------------------------------------------- diff --git a/bin/phoenix_utils.py b/bin/phoenix_utils.py index 580a78b..b521277 100755 --- a/bin/phoenix_utils.py +++ b/bin/phoenix_utils.py @@ -151,7 +151,7 @@ def setPath(): global testjar testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_test_jar_path) if testjar == "": - testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, "..")) + testjar = findFileInPathWithoutRecursion(PHOENIX_TESTS_JAR_PATTERN, os.path.join(current_dir, "..", 'lib')) if testjar == "": testjar = find(PHOENIX_TESTS_JAR_PATTERN, phoenix_class_path)
