fix nxos_bgp failure for graceful_restart warning (#34623)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
5613ca4bab
commit
c309315c1d
1 changed files with 7 additions and 0 deletions
|
@ -201,6 +201,13 @@ class Cli:
|
||||||
if opts.get('ignore_timeout') and code:
|
if opts.get('ignore_timeout') and code:
|
||||||
msgs.append(code)
|
msgs.append(code)
|
||||||
return msgs
|
return msgs
|
||||||
|
elif code and 'no graceful-restart' in err:
|
||||||
|
if 'ISSU/HA will be affected if Graceful Restart is disabled' in err:
|
||||||
|
msg = ['']
|
||||||
|
msgs.extend(msg)
|
||||||
|
return msgs
|
||||||
|
else:
|
||||||
|
self._module.fail_json(msg=err)
|
||||||
elif code:
|
elif code:
|
||||||
self._module.fail_json(msg=err)
|
self._module.fail_json(msg=err)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue