Backport/2.9/64397 (#64790)

* [FIX] graceful is not an immutable attribute

(cherry picked from commit 1f4d15fc55)

* [ADD] changelog fragment for PR 64397 to stable-2.9
pull/64874/merge
Michael Shen 5 years ago committed by Matt Davis
parent 58b6ad7444
commit 07365b2040

@ -0,0 +1,2 @@
bugfixes:
- netscaler_service - fixed issue preventing use of graceful attribute

@ -444,6 +444,8 @@ def service_identical(client, module, service_proxy):
# of the retrieved object
if 'ip' in diff_dict:
del diff_dict['ip']
if 'graceful' in diff_dict:
del diff_dict['graceful']
if len(diff_dict) == 0:
return True
else:
@ -828,7 +830,6 @@ def main():
'td',
'monitor_name_svc',
'riseapbrstatsmsgcode',
'graceful',
'all',
'Internal',
'newname',

Loading…
Cancel
Save