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 2013/07/29 13:42:39 UTC

git commit: updated refs/heads/master to 97424e2

Updated Branches:
  refs/heads/master 17b711bd7 -> 97424e295


CLOUDSTACK-3906: PrivateGw constructor

Signed-off-by: Prasanna Santhanam <ts...@apache.org>
(cherry picked from commit b82c0c9e7b565a2373cf553f8413819afa37d8c3)


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

Branch: refs/heads/master
Commit: 97424e2954f79f560d69c86cc5b0c8666fca6d19
Parents: 17b711b
Author: Prasanna Santhanam <ts...@apache.org>
Authored: Mon Jul 29 17:11:33 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Mon Jul 29 17:11:50 2013 +0530

----------------------------------------------------------------------
 tools/marvin/marvin/integration/lib/base.py | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/97424e29/tools/marvin/marvin/integration/lib/base.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/integration/lib/base.py b/tools/marvin/marvin/integration/lib/base.py
index 695edf7..2f834be 100755
--- a/tools/marvin/marvin/integration/lib/base.py
+++ b/tools/marvin/marvin/integration/lib/base.py
@@ -2962,6 +2962,9 @@ class VPC:
 class PrivateGateway:
     """Manage private gateway lifecycle"""
 
+    def __init__(self, items):
+        self.__dict__.update(items)
+
     @classmethod
     def create(cls, apiclient, gateway, ipaddress, netmask, vlan, vpcid,
                                                     physicalnetworkid=None):