You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/08/26 20:30:37 UTC

tinkerpop git commit: forgot to close the connection.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1278 5da8a30f7 -> e2f12c3cf


forgot to close the connection.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e2f12c3c
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e2f12c3c
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e2f12c3c

Branch: refs/heads/TINKERPOP-1278
Commit: e2f12c3cf2e51cba84a6b2389c012833050add04
Parents: 5da8a30
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Fri Aug 26 14:30:34 2016 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Fri Aug 26 14:30:34 2016 -0600

----------------------------------------------------------------------
 .../src/main/jython/tests/driver/test_driver_remote_connection.py   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e2f12c3c/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py b/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py
index 72247c4..2651521 100644
--- a/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py
+++ b/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py
@@ -108,6 +108,7 @@ class TestDriverRemoteConnection(TestCase):
             raise Exception("Accessing a non-existent key should throw an error")
         except KeyError:
             pass
+        connection.close()
 
 
 if __name__ == '__main__':