mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
docker_swarm_service: Fix typo for option type (#50483)
* Fix typo for option type in docker_swarm_service. * Add changelog.
This commit is contained in:
parent
4dd2b8e2d0
commit
6b33c588d0
2 changed files with 3 additions and 1 deletions
|
@ -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…
Reference in a new issue