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/01 23:49:59 UTC

[tinkerpop] branch travis-fix updated (315cd3b -> b455683)

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 315cd3b  Added some logging to try to isolate what travis is failing on.
     new b455683  Added some logging to try to isolate what travis is failing on.

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   (315cd3b)
            \
             N -- N -- N   refs/heads/travis-fix (b455683)

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:
 .../org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java  | 1 +
 1 file changed, 1 insertion(+)

[tinkerpop] 01/01: Added some logging to try to isolate what travis is failing on.

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 b455683c62f68e5cde1ca1de078b2f5fcba7db0d
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Thu Apr 1 13:58:49 2021 -0400

    Added some logging to try to isolate what travis is failing on.
---
 .travis.yml                                                      | 4 ++--
 .../tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java     | 9 +++++++++
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index ff3a058..671da5f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -60,7 +60,7 @@ jobs:
       name: "gremlin server"
     - script:
         - "mvn clean install -q -DskipTests -Dci"
-        - "travis_wait 60 mvn verify -pl :gremlin-server -DskipTests -DskipIntegrationTests=false -DincludeNeo4j -DtestUnified=true"
+        - "mvn verify -pl :gremlin-server -DskipTests -DskipIntegrationTests=false -DincludeNeo4j -DtestUnified=true"
       name: "gremlin server - unified"
     - script:
         - "mvn clean install -q -DskipTests -Dci"
@@ -68,7 +68,7 @@ jobs:
       name: "gremlin console"
     - script:
       - "mvn clean install -q -DskipTests -Dci"
-      - "travis_wait 60 mvn verify -pl :spark-gremlin -DskipTests -DskipIntegrationTests=false '-Dit.test=*IntegrateTest,!SparkGryoSerializerGraphComputerProcessIntegrateTest'"
+      - "mvn verify -pl :spark-gremlin -DskipTests -DskipIntegrationTests=false '-Dit.test=*IntegrateTest,!SparkGryoSerializerGraphComputerProcessIntegrateTest'"
       name: "spark - core"
     - script:
       - "mvn clean install -q -DskipTests -Dci"
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 7e09c95..096373e 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
@@ -113,8 +113,14 @@ public class GremlinDriverIntegrateTest extends AbstractGremlinServerIntegration
     private Log4jRecordingAppender recordingAppender = null;
     private Level previousLogLevel;
 
+    static {
+        final org.apache.log4j.Logger testLogger = org.apache.log4j.Logger.getLogger(GremlinDriverIntegrateTest.class);
+        testLogger.setLevel(Level.INFO);
+    }
+
     @Before
     public void setupForEachTest() {
+        logger.info("STARTING: " + name.getMethodName());
         recordingAppender = new Log4jRecordingAppender();
         final org.apache.log4j.Logger rootLogger = org.apache.log4j.Logger.getRootLogger();
 
@@ -146,6 +152,8 @@ public class GremlinDriverIntegrateTest extends AbstractGremlinServerIntegration
         }
 
         rootLogger.removeAppender(recordingAppender);
+
+        logger.info("STOPPING: " + name.getMethodName());
     }
 
     /**
@@ -183,6 +191,7 @@ public class GremlinDriverIntegrateTest extends AbstractGremlinServerIntegration
             case "shouldManageTransactionsInSession":
                 deleteDirectory(new File("/tmp/neo4j"));
                 settings.graphs.put("graph", "conf/neo4j-empty.properties");
+                settings.gremlinPool = 8;
                 break;
             case "shouldRequireAliasedGraphVariablesInStrictTransactionMode":
                 settings.strictTransactionManagement = true;