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
The following commit(s) were added to refs/heads/master by this push:
new c0a93ec Fixed aliasing for the new using() overload CTR
new b850428 Merge branch 'tp33'
c0a93ec is described below
commit c0a93ece604eebc6ab7a499207ae48fe36965ef6
Author: Stephen Mallette <[email protected]>
AuthorDate: Fri Dec 21 07:42:11 2018 -0500
Fixed aliasing for the new using() overload CTR
---
.../apache/tinkerpop/gremlin/driver/remote/DriverRemoteConnection.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/remote/DriverRemoteConnection.java
b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/remote/DriverRemoteConnection.java
index 1957fbd..d46adf6 100644
---
a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/remote/DriverRemoteConnection.java
+++
b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/remote/DriverRemoteConnection.java
@@ -106,7 +106,7 @@ public class DriverRemoteConnection implements
RemoteConnection {
}
private DriverRemoteConnection(final Client client, final String
remoteTraversalSourceName) {
- this.client = client;
+ this.client = client.alias(remoteTraversalSourceName);
this.remoteTraversalSourceName = remoteTraversalSourceName;
this.tryCloseCluster = false;
tryCloseClient = false;