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