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/08/26 20:02:36 UTC

[tinkerpop] branch master updated (8e3c994 -> eb37a1d)

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 8e3c994  Merge branch '3.4-dev'
     add b042fc8  TINKERPOP-2397 Lazy create the default serializer for java driver
     new eb37a1d  Merge branch '3.4-dev'

The 1 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:
 CHANGELOG.asciidoc                                                     | 1 +
 .../src/main/java/org/apache/tinkerpop/gremlin/driver/Cluster.java     | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)


[tinkerpop] 01/01: 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 eb37a1d65d721047ae17c10e15f38d25b9971328
Merge: 8e3c994 b042fc8
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed Aug 26 16:02:10 2020 -0400

    Merge branch '3.4-dev'

 CHANGELOG.asciidoc                                                     | 1 +
 .../src/main/java/org/apache/tinkerpop/gremlin/driver/Cluster.java     | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --cc gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Cluster.java
index c962ddb,8af727d..44937c6
--- a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Cluster.java
+++ b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Cluster.java
@@@ -958,6 -1053,7 +958,7 @@@ public final class Cluster 
  
          public Cluster create() {
              if (addresses.size() == 0) addContactPoint("localhost");
 -            if (null == serializer) serializer = Serializers.GRYO_V3D0.simpleInstance();
++            if (null == serializer) serializer = Serializers.GRAPHBINARY_V1D0.simpleInstance();
              return new Cluster(this);
          }
      }