Description
The Java driver is unable to pass on options defined in the query via a .with() configuration step when attempting to submit with the AliasClusteredClient's submit() method.
Example:
Cluster cluster = Cluster.build().create(); Client client = cluster.connect().alias("ggrateful"); GraphTraversalSource g = traversal().withRemote(DriverRemoteConnection.using(client, "ggrateful")); GraphTraversal traversal = g.with("evaluationTimeout", 1).V().both().both().both(); try { List<Result> results = client.submit(traversal).all().get(); } catch (Exception e) { e.printStackTrace(); }