mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-03 04:12:31 +01:00
CS-14929: Exception while creating a port forwarding rule on an acquired ip
CS-14943: Unable to deploy VM due to Unable to identify the provider by name CiscoNexus1000vVSM Description: Ignore the CiscoNexus1000vVSM provider when checking for providers when applying port forwarding rules.
This commit is contained in:
parent
49673d772b
commit
b793c4c0fe
@ -3246,7 +3246,8 @@ public class NetworkManagerImpl implements NetworkManager, NetworkService, Manag
|
||||
for (NetworkElement ne : _networkElements) {
|
||||
Provider provider = Network.Provider.getProvider(ne.getName());
|
||||
if (provider == null) {
|
||||
if (ne.getName().equalsIgnoreCase("Ovs") || ne.getName().equalsIgnoreCase("BareMetal")) {
|
||||
if (ne.getName().equalsIgnoreCase("Ovs") || ne.getName().equalsIgnoreCase("BareMetal")
|
||||
|| ne.getName().equalsIgnoreCase("CiscoNexus1000vVSM")) {
|
||||
continue;
|
||||
}
|
||||
throw new CloudRuntimeException("Unable to identify the provider by name " + ne.getName());
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user