Remove unnecessary exception from nxos_command (#3521)
This commit is contained in:
parent
426e9a357d
commit
b466f7bbe2
1 changed files with 2 additions and 6 deletions
|
@ -157,12 +157,8 @@ def main():
|
||||||
kwargs['command_type'] = 'cli_show'
|
kwargs['command_type'] = 'cli_show'
|
||||||
|
|
||||||
while retries > 0:
|
while retries > 0:
|
||||||
try:
|
response = module.execute(commands, **kwargs)
|
||||||
response = module.execute(commands, **kwargs)
|
result['stdout'] = response
|
||||||
result['stdout'] = response
|
|
||||||
except ShellError, exc:
|
|
||||||
module.fail_json(msg='failed to run commands', exc=exc.message,
|
|
||||||
command=exc.command)
|
|
||||||
|
|
||||||
for index, cmd in enumerate(commands):
|
for index, cmd in enumerate(commands):
|
||||||
if cmd.endswith('json'):
|
if cmd.endswith('json'):
|
||||||
|
|
Loading…
Reference in a new issue