commit | fda8bc4ea72786b5159f74a410a6841cf58ca152 | [log] [tgz] |
---|---|---|
author | Stephen Mallette <spmva@genoprime.com> | Mon Apr 27 07:09:13 2020 -0400 |
committer | Stephen Mallette <spmva@genoprime.com> | Mon Apr 27 07:09:13 2020 -0400 |
tree | 1fec17a563cbb577c371336f696bd96730646d6d | |
parent | 5da7920948c7e4e725ab1523d0659b3e3f88d6a7 [diff] | |
parent | 8b1f714368108be9bca27cdcede0ea4026a4808e [diff] |
Merge branch '3.4-dev'
diff --git a/gremlin-dotnet/src/Gremlin.Net/Driver/Remote/DriverRemoteConnection.cs b/gremlin-dotnet/src/Gremlin.Net/Driver/Remote/DriverRemoteConnection.cs index 8cbd43d..a52cb87 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Driver/Remote/DriverRemoteConnection.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Driver/Remote/DriverRemoteConnection.cs
@@ -39,7 +39,7 @@ private readonly string _traversalSource; /// <summary> - /// Initializes a new <see cref="IRemoteConnection" />. + /// Initializes a new <see cref="IRemoteConnection" /> using "g" as the default remote TraversalSource name. /// </summary> /// <param name="client">The <see cref="IGremlinClient" /> that will be used for the connection.</param> /// <exception cref="ArgumentNullException">Thrown when client is null.</exception>
diff --git a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Docs/Reference/GremlinVariantsTests.cs b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Docs/Reference/GremlinVariantsTests.cs index 42e633d..723afa6 100644 --- a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Docs/Reference/GremlinVariantsTests.cs +++ b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Docs/Reference/GremlinVariantsTests.cs
@@ -55,7 +55,7 @@ public void ConnectingTest() { // tag::connecting[] -var remoteConnection = new DriverRemoteConnection(new GremlinClient(new GremlinServer("localhost", 8182))); +var remoteConnection = new DriverRemoteConnection(new GremlinClient(new GremlinServer("localhost", 8182)), "g"); var g = Traversal().WithRemote(remoteConnection); // end::connecting[] }