Use get_option instead of _options.get API

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/40905/head
Abhijeet Kasurde 6 years ago committed by Brian Coca
parent c3d3b6cedc
commit 91eb4a034e

@ -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:

Loading…
Cancel
Save