cloudConnection is now CloudConnection
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/a2318d2f Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/a2318d2f Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/a2318d2f Branch: refs/heads/marvin_refactor Commit: a2318d2f80d7a6f84b95161f16236769b20b0a68 Parents: c133636 Author: Prasanna Santhanam <t...@apache.org> Authored: Thu Apr 25 16:56:29 2013 +0530 Committer: Prasanna Santhanam <t...@apache.org> Committed: Thu Apr 25 16:56:29 2013 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/cloudstackConnection.py | 2 +- tools/marvin/marvin/cloudstackTestClient.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a2318d2f/tools/marvin/marvin/cloudstackConnection.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/cloudstackConnection.py b/tools/marvin/marvin/cloudstackConnection.py index 5266c75..553a165 100644 --- a/tools/marvin/marvin/cloudstackConnection.py +++ b/tools/marvin/marvin/cloudstackConnection.py @@ -60,7 +60,7 @@ class CloudConnection(object): % (self.protocol, self.mgtSvr, self.port, self.path) def __copy__(self): - return cloudConnection(self.mgtSvr, self.port, self.user, self.passwd, + return CloudConnection(self.mgtSvr, self.port, self.user, self.passwd, self.apiKey, self.securityKey, self.asyncTimeout, self.logging, self.protocol, self.path) http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a2318d2f/tools/marvin/marvin/cloudstackTestClient.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/cloudstackTestClient.py b/tools/marvin/marvin/cloudstackTestClient.py index d85a61c..e448aba 100644 --- a/tools/marvin/marvin/cloudstackTestClient.py +++ b/tools/marvin/marvin/cloudstackTestClient.py @@ -28,7 +28,7 @@ class cloudstackTestClient(object): apiKey=None, securityKey=None, asyncTimeout=3600, defaultWorkerThreads=10, logging=None): self.connection = \ - cloudstackConnection.cloudConnection( + cloudstackConnection.CloudConnection( mgtSvr, port, user, passwd, apiKey, securityKey, asyncTimeout, logging)