You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2020/04/09 10:56:12 UTC

[tinkerpop] branch master updated (0ea7336 -> 6d8c423)

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

spmallette pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


    from 0ea7336   TINKERPOP-2349 Migrate to System.Text.Json
     new 8ba99e1  Fixed bug in java options preventing grapes logging CTR
     new 52468f9  Merge branch '3.3-dev' into 3.4-dev
     new 6d8c423  Merge branch '3.4-dev'

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-console/src/main/bin/gremlin.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


[tinkerpop] 02/03: Merge branch '3.3-dev' into 3.4-dev

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 52468f9935c9e30e0a43251004f4ba2346aa1edc
Merge: 08c6f61 8ba99e1
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu Apr 9 06:55:39 2020 -0400

    Merge branch '3.3-dev' into 3.4-dev

 gremlin-console/src/main/bin/gremlin.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


[tinkerpop] 03/03: Merge branch '3.4-dev'

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 6d8c423347bf193f4144de30d4d46e8aa6833b08
Merge: 0ea7336 52468f9
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu Apr 9 06:55:56 2020 -0400

    Merge branch '3.4-dev'

 gremlin-console/src/main/bin/gremlin.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


[tinkerpop] 01/03: Fixed bug in java options preventing grapes logging CTR

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 8ba99e165d9a45faa22490f72da435ad27476454
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed Apr 8 10:39:55 2020 -0400

    Fixed bug in java options preventing grapes logging CTR
---
 gremlin-console/src/main/bin/gremlin.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gremlin-console/src/main/bin/gremlin.sh b/gremlin-console/src/main/bin/gremlin.sh
index c675cc9..c9c8ca5 100755
--- a/gremlin-console/src/main/bin/gremlin.sh
+++ b/gremlin-console/src/main/bin/gremlin.sh
@@ -102,8 +102,9 @@ JVM_OPTS=$(awk -v RS=' ' '!/^$/ {if (!x[$0]++) print}' <<< "${JVM_OPTS}" | grep
 
 if [ -n "$SCRIPT_DEBUG" ]; then
     # in debug mode enable debugging of :install command
-    JVM_OPTS+=( "-Divy.message.logger.level=4 -Dgroovy.grape.report.downloads=true" )
+    JVM_OPTS+=( "-Divy.message.logger.level=4" "-Dgroovy.grape.report.downloads=true" )
     echo "CLASSPATH: $CLASSPATH"
+    echo "JVM_OPTS: $JVM_OPTS"
     set -x
 fi