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/d0e5b513 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/d0e5b513 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/d0e5b513 Branch: refs/heads/4.x-HBase-1.2 Commit: d0e5b513a9be622cd3c3cf084c84d362623a5eeb Parents: 1925e47 Author: Josh Elser <[email protected]> Authored: Wed Jan 3 12:22:28 2018 -0500 Committer: Josh Elser <[email protected]> Committed: Wed Jan 3 12:40:35 2018 -0500 ---------------------------------------------------------------------- bin/phoenix_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/d0e5b513/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)
