mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-04 04:12:48 +00:00
Remove unnecessary exception from nxos_command (#3521)
This commit is contained in:
committed by
Matt Clay
parent
c5b7e456bd
commit
75dbe9f1e8
@@ -157,12 +157,8 @@ def main():
|
||||
kwargs['command_type'] = 'cli_show'
|
||||
|
||||
while retries > 0:
|
||||
try:
|
||||
response = module.execute(commands, **kwargs)
|
||||
result['stdout'] = response
|
||||
except ShellError, exc:
|
||||
module.fail_json(msg='failed to run commands', exc=exc.message,
|
||||
command=exc.command)
|
||||
response = module.execute(commands, **kwargs)
|
||||
result['stdout'] = response
|
||||
|
||||
for index, cmd in enumerate(commands):
|
||||
if cmd.endswith('json'):
|
||||
|
||||
Reference in New Issue
Block a user