mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
docker_swarm_service: Don’t add difference when update_order is None (#50655)
* Don’t add difference when update_order is None * Add changelog fragment
This commit is contained in:
parent
fc0f20a35e
commit
cde292cc43
2 changed files with 3 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- "docker_swarm_service - fixing falsely reporting ``update_order`` as changed when option is not used."
|
|
@ -719,7 +719,7 @@ class DockerService(DockerBaseClass):
|
||||||
differences.add('update_monitor', parameter=self.update_monitor, active=os.update_monitor)
|
differences.add('update_monitor', parameter=self.update_monitor, active=os.update_monitor)
|
||||||
if self.update_max_failure_ratio != os.update_max_failure_ratio:
|
if self.update_max_failure_ratio != os.update_max_failure_ratio:
|
||||||
differences.add('update_max_failure_ratio', parameter=self.update_max_failure_ratio, active=os.update_max_failure_ratio)
|
differences.add('update_max_failure_ratio', parameter=self.update_max_failure_ratio, active=os.update_max_failure_ratio)
|
||||||
if self.update_order != os.update_order:
|
if self.update_order is not None and self.update_order != os.update_order:
|
||||||
differences.add('update_order', parameter=self.update_order, active=os.update_order)
|
differences.add('update_order', parameter=self.update_order, active=os.update_order)
|
||||||
if self.image != os.image.split('@')[0]:
|
if self.image != os.image.split('@')[0]:
|
||||||
differences.add('image', parameter=self.image, active=os.image.split('@')[0])
|
differences.add('image', parameter=self.image, active=os.image.split('@')[0])
|
||||||
|
|
Loading…
Reference in a new issue