You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by mc...@apache.org on 2020/04/06 15:45:47 UTC

[cassandra] branch trunk updated: Fix cqlsh tests running on jdk1.8 (regression from CASSANDRA-10190)

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

mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git


The following commit(s) were added to refs/heads/trunk by this push:
     new bb8ec1f  Fix cqlsh tests running on jdk1.8 (regression from CASSANDRA-10190)
bb8ec1f is described below

commit bb8ec1fc1066e604b5695c0f8057e2b3adfa5cb2
Author: Mick Semb Wever <mc...@apache.org>
AuthorDate: Sun Apr 5 10:50:26 2020 +0200

    Fix cqlsh tests running on jdk1.8 (regression from CASSANDRA-10190)
    
     patched by Mick Semb Wever; reviewed by Yuki Morishita for CASSANDRA-15662
---
 pylib/cassandra-cqlsh-tests.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pylib/cassandra-cqlsh-tests.sh b/pylib/cassandra-cqlsh-tests.sh
index d305759..56672f1 100755
--- a/pylib/cassandra-cqlsh-tests.sh
+++ b/pylib/cassandra-cqlsh-tests.sh
@@ -34,7 +34,7 @@ export NUM_TOKENS="32"
 export CASSANDRA_DIR=${WORKSPACE}
 
 if [ -z "$CASSANDRA_USE_JDK11" ]; then
-    export CASSANDRA_USE_JDK11=true
+    export CASSANDRA_USE_JDK11=false
 fi
 
 # Loop to prevent failure due to maven-ant-tasks not downloading a jar..
@@ -53,7 +53,7 @@ fi
 
 # Set up venv with dtest dependencies
 set -e # enable immediate exit if venv setup fails
-virtualenv --python=$PYTHON_VERSION --no-site-packages venv
+virtualenv --python=$PYTHON_VERSION venv
 source venv/bin/activate
 
 pip install -r ${CASSANDRA_DIR}/pylib/requirements.txt


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org