From cf2f8c182a8ae66c2b61a6671dcb7fde8fb67e98 Mon Sep 17 00:00:00 2001 From: mikewiebe Date: Wed, 20 Nov 2024 22:38:48 +0000 Subject: [PATCH] Remove unmanagable check --- plugins/modules/dcnm_interface.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/plugins/modules/dcnm_interface.py b/plugins/modules/dcnm_interface.py index 7cfbb1cda..998d41910 100644 --- a/plugins/modules/dcnm_interface.py +++ b/plugins/modules/dcnm_interface.py @@ -5023,13 +5023,6 @@ def dcnm_intf_update_inventory_data(self): ) ) - if ronly_sw_list: - self.module.fail_json( - msg="Error: Switches {0} are not managable in Fabric '{1}', No changes are allowed on these switches\n".format( - ronly_sw_list, self.fabric - ) - ) - # Based on the updated inventory_data, update ip_sn, hn_sn and sn_hn objects self.ip_sn, self.hn_sn = get_ip_sn_dict(self.inventory_data)