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/25 13:17:19 UTC

[tinkerpop] branch TINKERPOP-2403 updated (59e88f1 -> dc05042)

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

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


 discard 59e88f1  TINKERPOP-2403 Fixed bug in child tranversal translation for js
     add b6a64aa  TINKERPOP-2369 Replace Connection on server initiated Channel close (#1309)
     add d5d850c  TINKERPOP-2406 Delegate processing from event loop to worker threads (#1311)
     add 1c822e8  CTR - Guard expensive debug message
     add dc05042  TINKERPOP-2403 Fixed bug in child tranversal translation for js

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (59e88f1)
            \
             N -- N -- N   refs/heads/TINKERPOP-2403 (dc05042)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.asciidoc                                 |    2 +
 .../tinkerpop/gremlin/driver/Channelizer.java      |   10 +-
 .../tinkerpop/gremlin/driver/Connection.java       |  136 ++-
 .../tinkerpop/gremlin/driver/ConnectionPool.java   |   40 +-
 .../gremlin/driver/SimpleWebSocketServer.java      |   52 +
 .../gremlin/driver/TestWSGremlinInitializer.java   |  140 +++
 .../driver/TestWebSocketServerInitializer.java     |   47 +
 .../WebSocketClientBehaviorIntegrateTest.java      |  214 ++++
 .../gremlin/util/Log4jRecordingAppender.java       |    1 +
 .../gremlin/util/Log4jRecordingAppenderTest.java   |    4 +-
 .../gremlin/groovy/engine/GremlinExecutor.java     |    4 +-
 .../gremlin/server/auth/Krb5Authenticator.java     |    5 +-
 .../driver/ClientConnectionIntegrateTest.java      |    1 -
 .../AbstractGremlinServerIntegrationTest.java      |    4 +-
 .../gremlin/server/GremlinDriverIntegrateTest.java | 1091 +++++++++++---------
 .../server/GremlinServerAuditLogIntegrateTest.java |    5 -
 .../server/GremlinServerSessionIntegrateTest.java  |   21 +-
 ...tractGremlinServerChannelizerIntegrateTest.java |   38 +-
 18 files changed, 1231 insertions(+), 584 deletions(-)
 create mode 100644 gremlin-driver/src/test/java/org/apache/tinkerpop/gremlin/driver/SimpleWebSocketServer.java
 create mode 100644 gremlin-driver/src/test/java/org/apache/tinkerpop/gremlin/driver/TestWSGremlinInitializer.java
 create mode 100644 gremlin-driver/src/test/java/org/apache/tinkerpop/gremlin/driver/TestWebSocketServerInitializer.java
 create mode 100644 gremlin-driver/src/test/java/org/apache/tinkerpop/gremlin/driver/WebSocketClientBehaviorIntegrateTest.java
 copy {gremlin-server => gremlin-driver}/src/test/java/org/apache/tinkerpop/gremlin/util/Log4jRecordingAppender.java (99%)
 copy {gremlin-server => gremlin-driver}/src/test/java/org/apache/tinkerpop/gremlin/util/Log4jRecordingAppenderTest.java (95%)