Albert Chu created PHOENIX-3151:
-----------------------------------

             Summary: performance.py use of JAVA_HOME not consistent between 
builds
                 Key: PHOENIX-3151
                 URL: https://issues.apache.org/jira/browse/PHOENIX-3151
             Project: Phoenix
          Issue Type: Bug
    Affects Versions: 4.7.0
            Reporter: Albert Chu
            Priority: Minor


It appears the patch from PHOENIX-2303 did not get merged into all release 
branches consistently.  I noticed that it is different the Hbase 0.98 and Hbase 
1.0 lines, but appears to be correct in the Hbase 1.1 line.

{noformat}
>diff phoenix-4.7.0-HBase-1.1-bin/bin/performance.py 
>phoenix-4.7.0-HBase-1.0-bin-orig/bin/performance.py 
131c131
< exitcode = subprocess.call('%s -jar %s %s %s' % (java_cmd, 
phoenix_utils.testjar, data, rowcount),
---
> exitcode = subprocess.call('java -jar %s %s %s' % (phoenix_utils.testjar, 
> data, rowcount),

>diff phoenix-4.7.0-HBase-1.1-bin/bin/performance.py 
>phoenix-4.7.0-HBase-0.98-bin-orig/bin/performance.py 
131c131
< exitcode = subprocess.call('%s -jar %s %s %s' % (java_cmd, 
phoenix_utils.testjar, data, rowcount),
---
> exitcode = subprocess.call('java -jar %s %s %s' % (phoenix_utils.testjar, 
> data, rowcount),
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to