mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 10:25:28 +00:00
library: Make ignore_errors a real bool
This removes warnings like: [WARNING]: The value False (type bool) in a string field was converted to u'False' (type string). If this does not look like what you expect, quote the entire value to ensure it does not change.
This commit is contained in:
parent
b445c04ea7
commit
a00fe15943
1 changed files with 1 additions and 1 deletions
|
|
@ -1349,7 +1349,7 @@ class RunEnvironment:
|
|||
class RunEnvironmentAnsible(RunEnvironment):
|
||||
|
||||
ARGS = {
|
||||
"ignore_errors": {"required": False, "default": False, "type": "str"},
|
||||
"ignore_errors": {"required": False, "default": False, "type": "bool"},
|
||||
"force_state_change": {"required": False, "default": False, "type": "bool"},
|
||||
"provider": {"required": True, "default": None, "type": "str"},
|
||||
"connections": {"required": False, "default": None, "type": "list"},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue