Skip to content

Commit d386f64

Browse files
Changed Fail Message on plugins/modules/aci_bulk_static_binding_to_epg.py
Co-authored-by: Akini Ross <akinross@cisco.com>
1 parent 8fd8a23 commit d386f64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/modules/aci_bulk_static_binding_to_epg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ def validate_leafs(aci: ACIModule, leafs_config: Optional[list], interface_type:
800800
leafs.extend(str(leaf).split("-"))
801801
if len(leafs) == 1:
802802
if interface_type in ["vpc", "fex_vpc"]:
803-
aci.fail_json(msg='A interface_type of "vpc" requires 2 leafs')
803+
aci.fail_json(msg='An interface_type of "vpc" or "fex_vpc" requires 2 leafs')
804804
leafs = leafs[0]
805805
elif len(leafs) == 2:
806806
if interface_type not in ["vpc", "fex_vpc"]:

0 commit comments

Comments
 (0)