Updated Branches: refs/heads/master 5dd111640 -> d1c882289
CLOUDSTACK-3777: IndexOutOfBoundsException while adding Cisco VNMc provider on a upgraded setup Isolation methods may not always be present for a physical network. So not using it while adding VNMC appliance Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d1c88228 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d1c88228 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d1c88228 Branch: refs/heads/master Commit: d1c8822893b3cd682d27ff3bdb383187bdebc104 Parents: 5dd1116 Author: Koushik Das <[email protected]> Authored: Wed Jul 24 17:37:46 2013 +0530 Committer: Koushik Das <[email protected]> Committed: Wed Jul 24 17:37:46 2013 +0530 ---------------------------------------------------------------------- .../cisco-vnmc/src/com/cloud/network/element/CiscoVnmcElement.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d1c88228/plugins/network-elements/cisco-vnmc/src/com/cloud/network/element/CiscoVnmcElement.java ---------------------------------------------------------------------- diff --git a/plugins/network-elements/cisco-vnmc/src/com/cloud/network/element/CiscoVnmcElement.java b/plugins/network-elements/cisco-vnmc/src/com/cloud/network/element/CiscoVnmcElement.java index 5291ad1..8a5f041 100644 --- a/plugins/network-elements/cisco-vnmc/src/com/cloud/network/element/CiscoVnmcElement.java +++ b/plugins/network-elements/cisco-vnmc/src/com/cloud/network/element/CiscoVnmcElement.java @@ -550,7 +550,6 @@ public class CiscoVnmcElement extends AdapterBase implements SourceNatServicePro params.put("ip", cmd.getHost()); params.put("username", cmd.getUsername()); params.put("password", cmd.getPassword()); - params.put("transportzoneisotype", physicalNetwork.getIsolationMethods().get(0).toLowerCase()); // FIXME What to do with multiple isolation types Map<String, Object> hostdetails = new HashMap<String,Object>(); hostdetails.putAll(params);
