mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Don't pass file_name to DataLoader.load in script inventory plugin (#45428)
* Don't pass file_name to DataLoader.load in script inventory plugin. Fixes #34164 * Add changelog fragment
This commit is contained in:
@@ -120,7 +120,7 @@ class InventoryModule(BaseInventoryPlugin, Cacheable):
|
||||
raise AnsibleError("Inventory {0} contained characters that cannot be interpreted as UTF-8: {1}".format(path, to_native(e)))
|
||||
|
||||
try:
|
||||
self._cache[cache_key] = self.loader.load(data, file_name=path)
|
||||
self._cache[cache_key] = self.loader.load(data)
|
||||
except Exception as e:
|
||||
raise AnsibleError("failed to parse executable inventory script results from {0}: {1}\n{2}".format(path, to_native(e), err))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user