You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mitogen/ansible_mitogen
David Wilson 7fd88868a6 ansible: raise AnsibleConnectionFailure on connection failure; closes #183
Before:

    $ ANSIBLE_STRATEGY=mitogen ansible -i derp, derp -m setup
    An exception occurred during task execution. To see the full traceback, use -vvv. The error was:     (''.join(bits)[-300:],)
    derp | FAILED! => {
        "msg": "Unexpected failure during module execution.",
        "stdout": ""
    }

After:

    $ ANSIBLE_STRATEGY=mitogen ansible -i derp, derp -m setup
    derp | UNREACHABLE! => {
        "changed": false,
        "msg": "EOF on stream; last 300 bytes received: 'ssh: Could not resolve hostname derp: nodename nor servname provided, or not known\\r\\n'",
        "unreachable": true
    }
6 years ago
..
plugins ansible: Add support for free strategy. 6 years ago
__init__.py ansible: restructure to avoid intermediate imports 6 years ago
connection.py ansible: raise AnsibleConnectionFailure on connection failure; closes #183 6 years ago
helpers.py issue #164: precisely emulate Ansible's stdio behaviour. 6 years ago
logging.py ansible: Move setLevel() bits together. 6 years ago
mixins.py issue #164: missing cast() for _remote_file_exists(). 6 years ago
planner.py Ensure remote_tmp is respected everywhere. 6 years ago
process.py issue #106: partially working BinaryRunner/Planner. 6 years ago
runner.py issue #164: precisely emulate Ansible's stdio behaviour. 6 years ago
services.py ansible: raise AnsibleConnectionFailure on connection failure; closes #183 6 years ago
strategy.py ansible: Add support for free strategy. 6 years ago