Skip to content

Commit

Permalink
addressed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
syed-khadeerahmed committed Oct 24, 2024
1 parent f2725e9 commit f0dd351
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions plugins/modules/provision_workflow_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,8 @@
- The percentage of APs to reboot simultaneously during an upgrade.
- Must be an integer value, typically between 1 and 100, indicating the proportion of APs to upgrade at a time.
- Supported in Cisco Catalyst version 2.3.7.6 and later.
- Permissible values are - 5, 15, 25
- Must be one of the permissible values - 5, 15, or 25, representing the proportion of APs to reboot at once.
type: int
default: 20
requirements:
- dnacentersdk == 2.4.5
Expand Down Expand Up @@ -1448,9 +1447,9 @@ def provision_wireless_device(self):

self.log("Processing interfaces if they exist", "INFO")
self.log("Building payload for wireless provisioning", "INFO")
if 'dynamic_interfaces' in prov_params:
if 'dynamicInterfaces' in prov_params:
self.log("Processing dynamic interfaces", "INFO")
for interface in prov_params['dynamic_interfaces']:
for interface in prov_params['dynamicInterfaces']:
cleaned_interface = {}
for k, v in interface.items():
if v is not None:
Expand Down

0 comments on commit f0dd351

Please sign in to comment.