docker_swarm_service: Fix typo for option type (#50483)

* Fix typo for option type in docker_swarm_service.

* Add changelog.
pull/50490/head
Felix Fontein 6 years ago committed by Abhijit Menon-Sen
parent 4dd2b8e2d0
commit 6b33c588d0

@ -0,0 +1,2 @@
bugfixes:
- "docker_swarm_service - fixing wrong option type for ``update_order`` which prevented using that option."

@ -1164,7 +1164,7 @@ def main():
update_failure_action=dict(default='continue', choices=['continue', 'pause']),
update_monitor=dict(default=5000000000, type='int'),
update_max_failure_ratio=dict(default=0, type='float'),
update_order=dict(default=None, type='string'),
update_order=dict(default=None, type='str'),
user=dict(default='root'))
required_if = [
('state', 'present', ['image'])

Loading…
Cancel
Save