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 2019/12/14 02:50:12 UTC

[tinkerpop] branch master updated (80aceda -> a129900)

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 80aceda  Merge branch 'tp34'
     add 220a3bb  update requestId and userAgent in RequestMessage with RequestOptions
     new d4e6d34  Merge branch 'pr-1228' into tp34
     new 21d878e  Minor update to changelog
     new a129900  Merge branch 'tp34'

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:
 CHANGELOG.asciidoc                                 |  1 +
 .../apache/tinkerpop/gremlin/driver/Client.java    |  2 ++
 .../gremlin/server/GremlinDriverIntegrateTest.java | 27 ++++++++++++++++++++++
 3 files changed, 30 insertions(+)


[tinkerpop] 02/03: Minor update to changelog

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 21d878ec211be3c3901ed86e4df1f71f7060d73e
Author: stephen <sp...@gmail.com>
AuthorDate: Fri Dec 13 21:26:38 2019 -0500

    Minor update to changelog
---
 CHANGELOG.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 37ffe44..0575581 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -31,7 +31,7 @@ This release also includes changes from <<release-3-3-10, 3.3.10>>.
 * Introduced internal `Buffer` API as a way to wrap Netty's Buffer API and moved `GraphBinaryReader`, `GraphBinaryWriter` and `TypeSerializer<T>` to `gremlin-core`.
 * Unified the behavior of property comparison: only compare key&value.
 * Supported `hasKey()` and `hasValue()` step for edge property and meta property, like `g.E().properties().hasKey('xx')`.
-* Client sends overrideRequestId and userAgent to Server when they are present in requestOptions with a bytecode query request.
+* Modified driver to send `overrideRequestId` and `userAgent` to server when they are present in `RequestOptions` for bytecode requests.
 
 [[release-3-4-4]]
 === TinkerPop 3.4.4 (Release Date: October 14, 2019)


[tinkerpop] 03/03: Merge branch 'tp34'

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 a1299003945e410ef8884d5acee481a95c210278
Merge: 80aceda 21d878e
Author: stephen <sp...@gmail.com>
AuthorDate: Fri Dec 13 21:49:57 2019 -0500

    Merge branch 'tp34'

 CHANGELOG.asciidoc                                 |  1 +
 .../apache/tinkerpop/gremlin/driver/Client.java    |  2 ++
 .../gremlin/server/GremlinDriverIntegrateTest.java | 27 ++++++++++++++++++++++
 3 files changed, 30 insertions(+)

diff --cc gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
index 12fd0ac,9cbc337..51b8ed6
--- a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
+++ b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
@@@ -564,7 -564,9 +564,9 @@@ public abstract class Client 
  
                  // apply settings if they were made available
                  options.getBatchSize().ifPresent(batchSize -> request.add(Tokens.ARGS_BATCH_SIZE, batchSize));
 -                options.getTimeout().ifPresent(timeout -> request.add(Tokens.ARGS_SCRIPT_EVAL_TIMEOUT, timeout));
 +                options.getTimeout().ifPresent(timeout -> request.add(Tokens.ARGS_EVAL_TIMEOUT, timeout));
+                 options.getOverrideRequestId().ifPresent(request::overrideRequestId);
+                 options.getUserAgent().ifPresent(userAgent -> request.add(Tokens.ARGS_USER_AGENT, userAgent));
  
                  return submitAsync(request.create());
              } catch (Exception ex) {


[tinkerpop] 01/03: Merge branch 'pr-1228' into tp34

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 d4e6d34c0b112d50187e7b7ec1f29bb108898b5f
Merge: 272e0b1 220a3bb
Author: stephen <sp...@gmail.com>
AuthorDate: Fri Dec 13 21:25:18 2019 -0500

    Merge branch 'pr-1228' into tp34

 CHANGELOG.asciidoc                                 |  1 +
 .../apache/tinkerpop/gremlin/driver/Client.java    |  2 ++
 .../gremlin/server/GremlinDriverIntegrateTest.java | 27 ++++++++++++++++++++++
 3 files changed, 30 insertions(+)