Alex Willmer
Alex Willmer
Update as necessary
os.getenv() is probably harmless, os.putenv() my be a footgun. AIUI outcome is not reflected in os.environ ```console ➜ mitogen git:(issue1124) ✗ ag os.putenv tests/sudo_test.py 71:# ssh.call(os.putenv, 'LANGUAGE', 'fr') 72:# ssh.call(os.putenv,...
On Python 3 this has no effect. On Python 2 it is probably causing some subtle bugs. Particularly if there's a mix of Python 2 and Python 3 on controller...
A grab bag of shortcomings, ideas, and a place to disucss them ## Finding python to find python Ansible's native interpreter discovery makes **one** call to `sh`, with a list...
This issue is intended for discussion of 1. Should Mitogen continue to check for Ansible versions? 2. If so, how should Mitogen perform such checks? 3. If so, how should...
Seen in CI on macOS 13 https://github.com/mitogen-hq/mitogen/actions/runs/11669080981/job/32490230504?pr=1176 ``` TASK [Create /tmp/512mb.zero creates=/tmp/512mb.zero, _raw_params=dd if=/dev/zero of=/tmp/512mb.zero bs=1048576 count=512; chmod go= /tmp/512mb.zero ] *** Monday 04 November 2024 17:08:28 +0000 (0:00:00.007) 0:00:26.162...
Seen on macOS 13 (Van_313_10, py313-mode_localhost-ansible10-strategy_linear) job https://github.com/mitogen-hq/mitogen/actions/runs/11700584431/job/32586284545?pr=1184 ``` PLAY [integration/ssh/templated_by_inv.yml] ************************************ TASK [meta _raw_params=reset_connection] *************************************** Wednesday 06 November 2024 09:54:28 +0000 (0:00:00.011) 0:04:56.538 **** TASK [meta _raw_params=reset_connection] *************************************** Wednesday...
The config for the Ansible test suite sets `any_errors_fatal = true`. Despite this if a target fails to connect, execution of the test suite contains, e.g. #1186. This obscures the...