Commit Graph

91 Commits (master)

Author SHA1 Message Date
David Wilson 87435bf45d issue #140: nicer filetree construction 6 years ago
David Wilson 21a8026a63 issue #140: import reproduction 6 years ago
David Wilson f8738f1c52 issue #122: helper to print environment 6 years ago
David Wilson 6106c27707 ansible: repro for issue #118. 6 years ago
David Wilson 6ed731c088 Minor cleanup. 6 years ago
David Wilson cf01c6b710 importer: avoid duplicate module load(!); closes #113.
Amazed this one managed to scrape through for so long. Calling
__import__ from within find_module() was causing the target module, in
this case cookielib, to be loaded *then overwritten* by a subsequent
duplicate load higher in the stack.

The result is that cookielib was loaded twice, and, per usual Python
import semantics, a reference to the partially initialized first
cookielib was installed in sys.modules while its code executed.

At the end of cookielib on 2.x, it imports _LWPCookieJar, which in turn
imports the partially built cookielib from sys.modules, then subclasses
the CookieJar from /that/ module.

Everything is wonderful. Then the call returns back up into the import
mechanism which restarts the entire process -- only this time,
_LWPCookieJar is /not/ reinitialized, so the copy in sys.modules is
still left with types pointing at the old module!

So the duplicate import creates a new CookieJar which is not the base
class of LWPCookieJar. Tada! 3 hours debugging.

This is probably a performance fix in disguise, didn't realize things
were so broken. It may also be a regression elsewhere. Urgently need to
finish the tests.
6 years ago
David Wilson 316eebbe29 examples: enable the strategy by default 6 years ago
David Wilson 57b9d59e90 issue #113: import crash reproduction 6 years ago
David Wilson 23d104f73b examples: beginnings of repro for issue #109 6 years ago
David Wilson 88508fcb61 sudo: accept -n too (issue #108) 6 years ago
David Wilson 3ddbf1a503 ansible: basic support for ssh_args 6 years ago
David Wilson 1b2cbf1e00 examples: longer (but still crap) async_polling.yml 6 years ago
David Wilson e010e68874 examples: import broken non_python_modules.yml. 6 years ago
David Wilson 7080751f13 ansible: support environment: too. 6 years ago
David Wilson eaea8446ae examples: simplistic async_polling.yml 6 years ago
David Wilson 1f432abd2d Remove whoami.yml, it's now done by delegate_to.yml. 6 years ago
David Wilson 9fee0bd112 ansible: basic regression test for delegation/sudo 6 years ago
David Wilson 1b090a6c0a ansible: fix become:true with sudo:true 6 years ago
David Wilson f3315fc172 ansible: better emulate _low_level_execute_command()
Still needs a ton of work to emulate argument handling, shell selection,
and output emulation in every case. Unsurprisingly, Ansible documents
none of this.
6 years ago
David Wilson 6d403481d4 examples: simplify example playbooks. 6 years ago
David Wilson 10c2de2845 examples: rename playbooks for clarity. 6 years ago
David Wilson 875ee29d4f docs: initial Ansible extension docs. 6 years ago
David Wilson 1fb848b5e6 examples: add test case for local Ansible connections 6 years ago
David Wilson 4aacf2da4c ansible: we're gonna need more playbook steps 6 years ago
David Wilson 2a097dfaf8 examples: import client/server.py test scripts as examples 6 years ago
David Wilson e59cc89059 examples: fix mitop example. 6 years ago
David Wilson 27f1eddbd4 ansible: delete old needless host_vars directory 6 years ago
David Wilson 8204dc69e7 ansible: add become test case 6 years ago
David Wilson ed09076bdd ansible: automatically configure connection plug-in. 6 years ago
David Wilson 3fc673563d ansible: import example playbook 6 years ago
David Wilson f001eba23e ansible: Merge module runner into helpers.py. 6 years ago
David Wilson 3ddd9fc51c mitop: fix overlong command lines corrupting the followign line 6 years ago
David Wilson 00ae0f225c mitop: Show new processes in bold. 6 years ago
David Wilson 1faf0b8371 mitop: more dead code 6 years ago
David Wilson fbe9611942 More dead code, some comments. 6 years ago
David Wilson 70443b44a9 mitop: Remove dead code 6 years ago
David Wilson fba3eaa6d1 mitop: Remove dead code 6 years ago
David Wilson 271fed0fd6 Import mitop example script. 6 years ago
David Wilson 5b4f9bd863 Fixup ansible_demo.py for recent Ansibles 6 years ago
David Wilson 25e4724bac A few more mitogen.slave/master changes 6 years ago
David Wilson e7ff6259a3 Initial commit. 6 years ago