1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Use get_option instead of _options.get API

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2018-05-27 10:49:52 +05:30 committed by Brian Coca
parent c3d3b6cedc
commit 91eb4a034e

View file

@ -82,7 +82,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
for varname in query:
hostvars[host][varname] = self._query_vbox_data(host, query[varname])
strict = self._options.get('strict', False)
strict = self.get_option('strict')
# create composite vars
self._set_composite_vars(self.get_option('compose'), hostvars[host], host, strict=strict)
@ -223,7 +223,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
source_data = None
if cache:
cache = self._options.get('cache')
cache = self.get_option('cache')
update_cache = False
if cache: