You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by gj...@apache.org on 2019/08/15 15:23:51 UTC

[phoenix] branch master updated: PHOENIX-5444 Incorrect Phoenix Client Path in phoenix_utils.py

This is an automated email from the ASF dual-hosted git repository.

gjacoby pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/master by this push:
     new 55134c2  PHOENIX-5444 Incorrect Phoenix Client Path in phoenix_utils.py
55134c2 is described below

commit 55134c2a988fa8abe366f61f28ab73e07e657dab
Author: Daniel Wong <41...@users.noreply.github.com>
AuthorDate: Tue Aug 13 19:04:11 2019 -0700

    PHOENIX-5444 Incorrect Phoenix Client Path in phoenix_utils.py
    
    Update to use existing pattern in the utility class.
---
 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 98a0896..2b01345 100755
--- a/bin/phoenix_utils.py
+++ b/bin/phoenix_utils.py
@@ -111,7 +111,7 @@ def setPath():
     phoenix_jar_path = os.path.join(current_dir, "..", "phoenix-client", "target","*")
 
     global phoenix_client_jar
-    phoenix_client_jar = find("phoenix-*-client.jar", phoenix_jar_path)
+    phoenix_client_jar = find(PHOENIX_CLIENT_JAR_PATTERN, phoenix_jar_path)
     if phoenix_client_jar == "":
         phoenix_client_jar = findFileInPathWithoutRecursion(PHOENIX_CLIENT_JAR_PATTERN, os.path.join(current_dir, ".."))
     if phoenix_client_jar == "":