mirror of https://github.com/ansible/ansible.git
ansible-inventory: Handle exception in toml parsing (#74486)
Handle stacktrace raise while parsing inventory in toml format Fixes: #74404 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>pull/74559/head
parent
68e9e1c999
commit
38dd49eb00
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- ansible-inventory - handle an exception while parsing inventory in toml format (https://github.com/ansible/ansible/issues/74404).
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
all:
|
||||||
|
children:
|
||||||
|
somegroup:
|
||||||
|
hosts:
|
||||||
|
something:
|
||||||
|
7.2: bar
|
||||||
|
ungrouped: {}
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
all:
|
||||||
|
children:
|
||||||
|
somegroup:
|
||||||
|
hosts:
|
||||||
|
something:
|
||||||
|
foo: bar
|
||||||
|
ungrouped: {}
|
||||||
Loading…
Reference in New Issue