You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by rd...@apache.org on 2019/11/13 13:12:15 UTC

[tinkerpop] branch travis-fix updated (0694754 -> 2cc43d8)

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

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


 discard 0694754  removed other test stages, don't run tests in parallel
     new 2cc43d8  test if waiting helps close connections

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   (0694754)
            \
             N -- N -- N   refs/heads/travis-fix (2cc43d8)

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:
 .travis.yml                                             | 17 ++++++++++++++++-
 .../server/GremlinServerSessionIntegrateTest.java       |  6 ++++++
 2 files changed, 22 insertions(+), 1 deletion(-)


[tinkerpop] 01/01: test if waiting helps close connections

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

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

commit 2cc43d8c423ac521d8f3ad5fee5232bc8952404a
Author: Robert Dale <ro...@gmail.com>
AuthorDate: Wed Nov 13 08:12:02 2019 -0500

    test if waiting helps close connections
---
 .../tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
index 4273634..75b4586 100644
--- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
+++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
@@ -352,7 +352,13 @@ public class GremlinServerSessionIntegrateTest  extends AbstractGremlinServerInt
 
         assertEquals(requests, counter);
 
+        System.out.println("shouldEnsureSessionBindingsAreThreadSafe: calling cluster.close");
         cluster.close();
+        System.out.println("shouldEnsureSessionBindingsAreThreadSafe: called cluster.close");
+        System.out.println("shouldEnsureSessionBindingsAreThreadSafe: waiting");
+        Thread.sleep(120000);
+        System.out.println("shouldEnsureSessionBindingsAreThreadSafe: done waiting, exiting test");
+
     }
 
     @Test