You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ml...@apache.org on 2013/01/16 21:59:57 UTC

[29/50] git commit: traffic_type not traffictype

traffic_type not traffictype

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


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

Branch: refs/heads/resizevolume
Commit: bfd02c5db39ee2dad30d0edefb205b56a4248594
Parents: 04b14ab
Author: Prasanna Santhanam <ts...@apache.org>
Authored: Tue Jan 15 19:36:30 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Tue Jan 15 19:36:30 2013 +0530

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


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/bfd02c5d/tools/marvin/marvin/deployDataCenter.py
----------------------------------------------------------------------
diff --git a/tools/marvin/marvin/deployDataCenter.py b/tools/marvin/marvin/deployDataCenter.py
index ff3b6e6..e4f7eac 100644
--- a/tools/marvin/marvin/deployDataCenter.py
+++ b/tools/marvin/marvin/deployDataCenter.py
@@ -260,8 +260,8 @@ class deployDataCenters():
         traffic_type.traffictype = traffictype.typ
         traffic_type.kvmnetworklabel = traffictype.kvm if traffictype.kvm is not None else None
         traffic_type.xennetworklabel = traffictype.xen if traffictype.xen is not None else None
-        traffictype.vmwarenetworklabel = traffictype.vmware if traffictype.vmware is not None else None
-        traffictype.simulatorlabel = traffictype.simulator if traffictype.simulator is not None else None
+        traffic_type.vmwarenetworklabel = traffictype.vmware if traffictype.vmware is not None else None
+        traffic_type.simulatorlabel = traffictype.simulator if traffictype.simulator is not None else None
         return self.apiClient.addTrafficType(traffic_type)
 
     def enableZone(self, zoneid, allocation_state="Enabled"):