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 10:51:37 UTC

[tinkerpop] 02/02: Merge branch 'pr-1417'

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

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

commit 02d1ee6c000583fee5cfc9b7778782aab8643fb1
Merge: cd8719c 66bf504
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Fri Apr 23 06:50:18 2021 -0400

    Merge branch 'pr-1417'

 ...emlinServerAuditLogDeprecatedIntegrateTest.java | 26 ++++++---------
 .../server/GremlinServerAuditLogIntegrateTest.java | 39 ++++------------------
 .../server/GremlinServerAuthKrb5IntegrateTest.java | 34 +++++++++----------
 .../gremlin/server/TestClientFactory.java          |  4 +++
 4 files changed, 38 insertions(+), 65 deletions(-)

diff --cc gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/TestClientFactory.java
index 06ec8c9,1d82214..07a41c9
--- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/TestClientFactory.java
+++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/TestClientFactory.java
@@@ -34,13 -34,13 +34,17 @@@ public final class TestClientFactory 
      public static final String RESOURCE_PATH = "conf/remote-objects.yaml";
  
      public static Cluster.Builder build() {
 -        return Cluster.build("localhost").port(45940);
 +        return build("localhost");
 +    }
 +
 +    public static Cluster.Builder build(final String address) {
 +        return Cluster.build(address).port(45940);
      }
  
+     public static Cluster.Builder build(final String address) {
+         return Cluster.build(address).port(45940);
+     }
+ 
      public static Cluster open() {
          return build().create();
      }