From d12a700301bd0875ee80a08df060bfa244da4ef3 Mon Sep 17 00:00:00 2001 From: Jacob Tardieu Date: Wed, 21 Jan 2015 01:15:19 +0100 Subject: [PATCH] Change the PHOENIX_TEST_JAR_PATTERN since it was also matching flume tests jars. The performance.py script wasn't working anymore in the bin distribution of phoenix because the flume testjar was matching the test jar pattern for phoenix. This new pattern fixes this issue. --- bin/phoenix_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/phoenix_utils.py b/bin/phoenix_utils.py index 4f7d9c3e7ad..5a9145dc34a 100755 --- a/bin/phoenix_utils.py +++ b/bin/phoenix_utils.py @@ -50,7 +50,7 @@ def findFileInPathWithoutRecursion(pattern, path): def setPath(): PHOENIX_CLIENT_JAR_PATTERN = "phoenix-*-client*.jar" - PHOENIX_TESTS_JAR_PATTERN = "phoenix-*-tests*.jar" + PHOENIX_TESTS_JAR_PATTERN = "phoenix-core-*-tests*.jar" global current_dir current_dir = os.path.dirname(os.path.abspath(__file__)) global phoenix_jar_path