From 5bda51ff36101210fea95ea040c7c92f85a8329f Mon Sep 17 00:00:00 2001 From: Robin Pierre Cordier Date: Thu, 10 Mar 2022 12:13:37 -0500 Subject: [PATCH] Fix: ignored constructed configuration keys --- plugins/inventory/kheops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/inventory/kheops.py b/plugins/inventory/kheops.py index 5ee984e..94be166 100644 --- a/plugins/inventory/kheops.py +++ b/plugins/inventory/kheops.py @@ -83,7 +83,7 @@ class InventoryModule(BaseInventoryPlugin, Cacheable, Constructable): super(InventoryModule, self).parse(inventory, loader, path, cache) config_data = self._read_config_data(path) - #self._consume_options(config_data) + self._consume_options(config_data) # Get options from inventory self.jinja2_native = self.get_option('jinja2_native')