You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the configure_interface_pc_and_vpc the Interface selector name is derived from the switch_profile.
infra_accportp = AccPortP(infra, switch_profile + '_ifselector')
This should not be the case since we are passing the ifselector name to the function:
def configure_interface_pc_and_vpc(infra, switch_profile, switches, interface_type, ports, selector, policy_group)
In my implementation I changed all occurrences of switch_profile + '_ifselector' with selector and all seems to be working fine.
The text was updated successfully, but these errors were encountered:
In the configure_interface_pc_and_vpc the Interface selector name is derived from the switch_profile.
infra_accportp = AccPortP(infra, switch_profile + '_ifselector')
This should not be the case since we are passing the ifselector name to the function:
def configure_interface_pc_and_vpc(infra, switch_profile, switches, interface_type, ports, selector, policy_group)
In my implementation I changed all occurrences of switch_profile + '_ifselector' with selector and all seems to be working fine.
The text was updated successfully, but these errors were encountered: