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 2021/04/23 17:50:09 UTC

[tinkerpop] branch travis-fix updated (e7010e1 -> b7c1f62)

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

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


 discard e7010e1  Removed worker pool configuration given fix to TINKERPOP-2550 that fixes deadlock issue which typically occurred in low resource environments like travis CTR
 discard b954df8  TINKERPOP-2550 Fixed bug in java Client initialization
     add 66e8268  Add mention (via CTR) that ANY allows String IDs
     add d46417d  TINKERPOP-2547 Add a way to supply a callback on handshake with java driver
     add b226f97  Merge branch 'TINKERPOP-2547' into 3.4-dev
     add 2553bda  TINKERPOP-2550 Fixed bug in java Client initialization
     add 11a963d  Merge branch 'TINKERPOP-2550' into 3.4-dev
     add 247d097  Manually backport #1417 which made some improvements to integration test setup CTR
     add efd5cfd  Removed some unused imports CTR
     add f653835  Initialized Client instances in test which might yield more time for the server to full initialize the authenticator.
     new b7c1f62  Turn on logging in travis-fix

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   (e7010e1)
            \
             N -- N -- N   refs/heads/travis-fix (b7c1f62)

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.

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 +
 docker/scripts/build.sh                            |  1 -
 .../reference/implementations-tinkergraph.asciidoc |  2 +
 .../tinkerpop/gremlin/driver/Channelizer.java      |  8 ++--
 .../apache/tinkerpop/gremlin/driver/Client.java    |  9 +++-
 .../apache/tinkerpop/gremlin/driver/Cluster.java   | 17 ++++++-
 .../tinkerpop/gremlin/driver/ConnectionPool.java   | 10 +++-
 .../gremlin/driver/HandshakeInterceptor.java}      | 26 +++++------
 .../driver/handler/WebSocketClientHandler.java     | 35 +++++++++++++-
 .../gremlin/server/GremlinDriverIntegrateTest.java | 54 ++++++++++++++++------
 .../server/GremlinServerAuditLogIntegrateTest.java | 33 +++++++------
 .../server/GremlinServerAuthKrb5IntegrateTest.java | 42 ++++++++---------
 .../gremlin/server/TestClientFactory.java          |  6 ++-
 13 files changed, 167 insertions(+), 77 deletions(-)
 copy gremlin-driver/src/{test/java/org/apache/tinkerpop/gremlin/driver/TokensTest.java => main/java/org/apache/tinkerpop/gremlin/driver/HandshakeInterceptor.java} (56%)

[tinkerpop] 01/01: Turn on logging in travis-fix

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

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

commit b7c1f62e990df03401afad3f76b49e0aaf3ea456
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Fri Apr 23 13:49:39 2021 -0400

    Turn on logging in travis-fix
---
 .../org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
index 0e03486..63dfe19 100644
--- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
+++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
@@ -114,6 +114,7 @@ public class GremlinDriverIntegrateTest extends AbstractGremlinServerIntegration
 
     @Before
     public void setupForEachTest() {
+        logger.warn("STARTING: {}", name.getMethodName());
         recordingAppender = new Log4jRecordingAppender();
         final org.apache.log4j.Logger rootLogger = org.apache.log4j.Logger.getRootLogger();
 
@@ -145,6 +146,7 @@ public class GremlinDriverIntegrateTest extends AbstractGremlinServerIntegration
         }
 
         rootLogger.removeAppender(recordingAppender);
+        logger.warn("ENDING: {}", name.getMethodName());
     }
 
     /**