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
pull/45445/head
Matt Martz 6 years ago committed by GitHub
parent aa01d9d243
commit 263b9fade8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
bugfixes:
- script inventory plugin - Don't pass file_name to DataLoader.load, which will prevent misleading error messages (https://github.com/ansible/ansible/issues/34164)

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

Loading…
Cancel
Save