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/12/28 23:30:45 UTC

[tinkerpop] branch ci-fix updated (e89ae07 -> 3e95bd4)

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

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


 discard e89ae07  remove neo4j from build of gremlin server
 discard 0565f32  Revert "TINKERPOP-2626 Prevent premature close of traversal"
 discard 139e9a2  Increased timeouts slightly for build runs
 discard 08a8c6c  Changed seconds to minutes for timeout - oops CTR
 discard ede876f  Added transaction testing to Gremlin Server for CI CTR
 discard 483cc50  Bump to Netty 4.1.72 CTR
 discard 56a41d9  Bump to maven 3.8.x in docker image CTR
 discard 150500c  TINKERPOP-2626 Prevent premature close of traversal
 discard 94b1011  Add a neo4j build to CI CTR
 discard 853ea1e  Minor dev doc updates CTR
 discard a02dd75  TINKERPOP-2630 Clarifying note on GraphSON 1.0 configuration CTR
 discard 6eeb82c  TINKERPOP-2632 Bumped to Netty 4.1.68 CTR
 discard 9876be6  TINKERPOP-2630 Added some docs around GraphSON 1.0 CTR
 discard 1944cd9  Fixed spelling CTR
 discard f51a8d7  Removed junit assertThat() for hamcrest CTR
 discard 935508f  Added TextP to common imports for python CTR
     add 586ec3d  Changes to address re-try failures on initially dead host
     add b7c814e  Merge branch 'pr-1476' into 3.4-dev
     add 31e8c0a  Added TextP to common imports for python CTR
     add d172357  Removed junit assertThat() for hamcrest CTR
     add 6c1cc0c  3.4 - Retain failure context in NoHostAvailableException
     add 37015cd  Merge branch 'pr-1484' into 3.4-dev
     add d276458  Fixed spelling CTR
     add 7dccf95  TINKERPOP-2630 Added some docs around GraphSON 1.0 CTR
     add de6a61a  TINKERPOP-2632 Bumped to Netty 4.1.68 CTR
     add b82c47a  TINKERPOP-2630 Clarifying note on GraphSON 1.0 configuration CTR
     add 4c50cf2  Minor dev doc updates CTR
     add a013c52  Add a neo4j build to CI CTR
     add 96ccc21  TINKERPOP-2626 Prevent premature close of traversal
     add 8c7a1a5  Bump to maven 3.8.x in docker image CTR
     add 5db8aad  Bump to Netty 4.1.72 CTR
     add b51c97e  Added transaction testing to Gremlin Server for CI CTR
     add 9ab9433  Changed seconds to minutes for timeout - oops CTR
     new 3e95bd4  Remove neo4j from build

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   (e89ae07)
            \
             N -- N -- N   refs/heads/ci-fix (3e95bd4)

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:
 .github/workflows/build-test.yml                   |  4 +-
 CHANGELOG.asciidoc                                 |  3 +
 .../console/jsr223/DriverRemoteAcceptorTest.java   | 12 +--
 .../traversal/step/filter/RangeGlobalStep.java     |  3 -
 .../process/traversal/util/DefaultTraversal.java   |  4 +-
 .../gremlin/structure/util/CloseableIterator.java  |  3 +-
 .../apache/tinkerpop/gremlin/driver/Client.java    | 97 +++++++++++++++++-----
 .../apache/tinkerpop/gremlin/driver/Cluster.java   |  2 -
 .../driver/exception/NoHostAvailableException.java |  4 +
 .../gremlin/server/GremlinDriverIntegrateTest.java | 70 +++++++++++++++-
 .../server/GremlinServerAuthIntegrateTest.java     |  4 +-
 .../server/GremlinServerSslIntegrateTest.java      | 42 ++++------
 .../gremlin/server/util/ExceptionTestUtils.java}   | 21 +++--
 13 files changed, 188 insertions(+), 81 deletions(-)
 copy gremlin-server/src/{main/java/org/apache/tinkerpop/gremlin/server/util/ThreadFactoryUtil.java => test/java/org/apache/tinkerpop/gremlin/server/util/ExceptionTestUtils.java} (63%)

[tinkerpop] 01/01: Remove neo4j from build

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

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

commit 3e95bd490dd4419a16eade321ea59cb03a011417
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Dec 28 18:30:17 2021 -0500

    Remove neo4j from build
---
 .github/workflows/build-test.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index ec0b2e3..c561074 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -43,7 +43,7 @@ jobs:
       - name: Build with Maven
         run: |
           mvn clean install -pl -:gremlin-javascript,-:gremlin-python,-gremlin-dotnet,-:gremlin-dotnet-source,-:gremlin-dotnet-tests -q -DskipTests -Dci
-          mvn verify -pl :gremlin-server -DskipTests -DskipIntegrationTests=false -DincludeNeo4j
+          mvn verify -pl :gremlin-server -DskipTests -DskipIntegrationTests=false
   spark-core:
     name: spark core
     timeout-minutes: 45