mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Merge pull request #13114 from mgedmin/fix-plugin-loader
Check sys.modules before loading modules
This commit is contained in:
@@ -304,6 +304,9 @@ class PluginLoader:
|
||||
__contains__ = has_plugin
|
||||
|
||||
def _load_module_source(self, name, path):
|
||||
if name in sys.modules:
|
||||
# See https://github.com/ansible/ansible/issues/13110
|
||||
return sys.modules[name]
|
||||
with open(path, 'r') as module_file:
|
||||
module = imp.load_source(name, path, module_file)
|
||||
return module
|
||||
|
||||
Reference in New Issue
Block a user