added comments

pull/715/head
Steven Robertson 4 years ago
parent cc8febb841
commit 583f540889

@ -77,7 +77,7 @@ LOG = logging.getLogger(__name__)
try:
BaseActionClass = ansible.plugins.action.ActionBase
except AttributeError:
# collections were added in https://github.com/ansible/ansible/pull/52194/files
# full collection support was added in v2.10.0
# monkeypatching collections since they don't have an actionBase
BaseActionClass = type('DummyActionBase', (object,), {})

@ -54,6 +54,7 @@ except ImportError:
Sentinel = None
# TODO: might be possible to lower this back to 2.3 if collection support works without hacks
ANSIBLE_VERSION_MIN = (2, 10)
ANSIBLE_VERSION_MAX = (2, 10)

@ -155,6 +155,7 @@ def get_child_modules(path, fullname):
:return:
List of submodule name suffixes.
"""
# jjj
# TODO: move this somehow to ansible_mitogen, if it's even possible
# ISSUE: not everything is being loaded via sys.modules in ansible when it comes to collections
# only `action` and `modules` show up in sys.modules[fullname]
@ -520,6 +521,7 @@ class PkgutilMethod(FinderMethod):
if not loader:
return
# jjj
# if fullname == "ansible_collections":
# import epdb; epdb.set_trace()
# ba = loader.load_module("ansible_collections.alikins")

Loading…
Cancel
Save