You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ts...@apache.org on 2012/12/07 23:37:12 UTC

git commit: Marvin: testClient close calls try to close the dbConnection

Updated Branches:
  refs/heads/master 8ff8673f7 -> d1e49a050


Marvin: testClient close calls try to close the dbConnection

dbConnections are auto-managed do not need explicit closing

Signed-off-by: Prasanna Santhanam <ts...@apache.org> 1354919683 -0800


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

Branch: refs/heads/master
Commit: d1e49a05002d6130df739341398b90744bb24928
Parents: 8ff8673
Author: Prasanna Santhanam <ts...@apache.org>
Authored: Fri Dec 7 14:34:43 2012 -0800
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Fri Dec 7 14:35:53 2012 -0800

----------------------------------------------------------------------
 tools/marvin/marvin/cloudstackTestClient.py |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/d1e49a05/tools/marvin/marvin/cloudstackTestClient.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/cloudstackTestClient.py b/tools/marvin/marvin/cloudstackTestClient.py
index 2bf14a0..80ae07d 100644
--- a/tools/marvin/marvin/cloudstackTestClient.py
+++ b/tools/marvin/marvin/cloudstackTestClient.py
@@ -119,8 +119,6 @@ class cloudstackTestClient(object):
     def close(self):
         if self.connection is not None:
             self.connection.close()
-        if self.dbConnection is not None:
-            self.dbConnection.close()
         
     def getDbConnection(self):
         return self.dbConnection