mirror of https://github.com/apache/cloudstack.git
remove unnecessary changes
This commit is contained in:
parent
1c228a4a59
commit
8c12ce373b
|
|
@ -941,7 +941,7 @@ public class NetworkOrchestrator extends ManagerBase implements NetworkOrchestra
|
|||
* @return ordered list of Network and NicProfile pair
|
||||
* @param networks the map od networks to nic profiles list
|
||||
*/
|
||||
private List<Pair<Network, NicProfile>> getOrderedNetworkNicProfileMapping(final LinkedHashMap<? extends Network, List<? extends NicProfile>> networks) {
|
||||
private List<Pair<Network, NicProfile>> getOrderedNetworkNicProfileMapping(final LinkedHashMap<? extends Network, List<? extends NicProfile>> networks) {
|
||||
List<Pair<Network, NicProfile>> profilesList = new ArrayList<>();
|
||||
for (final Map.Entry<? extends Network, List<? extends NicProfile>> network : networks.entrySet()) {
|
||||
List<? extends NicProfile> requestedProfiles = network.getValue();
|
||||
|
|
|
|||
|
|
@ -462,7 +462,7 @@ export default {
|
|||
this.rules = reactive({})
|
||||
},
|
||||
showIlb (network) {
|
||||
return network.service.filter(s => (s.name === 'Lb') && (s.capability.filter(c => c.name === 'LbSchemes' && c.value.split(',').includes('Internal')).length > 0)).length > 0 || false
|
||||
return network.service.filter(s => (s.name === 'Lb') && (s.capability.filter(c => c.name === 'LbSchemes' && c.value === 'Internal').length > 0)).length > 0 || false
|
||||
},
|
||||
updateMtu () {
|
||||
if (this.form.privatemtu > this.privateMtuMax) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue