mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
make missing pattern ansibleerror (#51397)
ansibleoptionserror should be limited to cli options (technically --limit makes this a bit grey but hosts: should not trigger the same error)
This commit is contained in:
parent
dd2032a3ad
commit
621b052777
1 changed files with 1 additions and 1 deletions
|
@ -558,7 +558,7 @@ class InventoryManager(object):
|
||||||
if C.HOST_PATTERN_MISMATCH == 'warning':
|
if C.HOST_PATTERN_MISMATCH == 'warning':
|
||||||
display.warning(msg)
|
display.warning(msg)
|
||||||
elif C.HOST_PATTERN_MISMATCH == 'error':
|
elif C.HOST_PATTERN_MISMATCH == 'error':
|
||||||
raise AnsibleOptionsError(msg)
|
raise AnsibleError(msg)
|
||||||
# no need to write 'ignore' state
|
# no need to write 'ignore' state
|
||||||
|
|
||||||
return results
|
return results
|
||||||
|
|
Loading…
Reference in a new issue