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