You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by robertdale <gi...@git.apache.org> on 2016/09/23 01:25:53 UTC

[GitHub] tinkerpop issue #433: TINKERPOP-1249 Add keep-alive functionality to websock...

Github user robertdale commented on the issue:

    https://github.com/apache/tinkerpop/pull/433
  
    Tested a clean console build with 3.2.2 server.  Pinging works as expected.  Closing each Client, a Cluster, and ':remote close' does stop pinging as expected.
    
    Not sure what the expected behavior is here but this does not stop pinging after close. I had expected it to work like Client.  Instead the Cluster must be closed.
    ```
    cluster = Cluster.open('conf/remote-objects.yaml')
    rem = DriverRemoteConnection.using(cluster, 'g')
    g = EmptyGraph.instance().traversal().withRemote(rem)
    g.V()
    rem.close()
    ```
    



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---