TODO: turns out ansible 2.10 doesn't run Mitogen like it used to; was running old ansible version before because ansible-base didn't override everything. Did a fresh uninstall of ansible and installed 2.10.0 and Mitogen's connection monkeypatching isn't working

pull/715/head
Steven Robertson 4 years ago
parent 1bd4b8afcd
commit ca4e8116b7

@ -363,7 +363,10 @@ class StrategyMixin(object):
try:
wrappers.install()
try:
# TODO: ansible 2.10 doesn't actually call Mitogen like it used to
# mitogen_linear is called as expected but connection wrapping doesn't work
run = super(StrategyMixin, self).run
import epdb; epdb.set_trace()
return mitogen.core._profile_hook('Strategy',
lambda: run(iterator, play_context)
)

Loading…
Cancel
Save