George Shuklin
George Shuklin
I'd agree, that part of the lag is due to stops inside emoji, but I want to point, that when moving cursor through faces (colored), CPU consumption goes way up....
Just for example, here is my current collection I'm working with: https://github.com/amarao/collection_ip
It may be worth it. Mitogen itself may resides in module_utils. This will solve problems with paths. But can strategy plugin resides in a collection?
This is really helpful. I believe, this is natural way for mitogen. But those changes requires actions from core maintainers, because galaxy namespace must be allocated, and upload process should...
I've just discussed this idea with colleagues, and we found one additional case to consider. In some projects we run ansible with mitogen like this: ``` export ANSIBLE_STRATEGY_PLUGINS=/usr/local/lib/python3.10/dist-packages/ansible_mitogen/plugins/strategy export ANSIBLE_STRATEGY=mitogen_linear...
https://pythonclock.org/ I believe now is a year 2022, and python2 is dead for two years already. You have three options: 1. Switch to python 3 2. Ask your vendor to...
It's warnings. They should not affect the code. If it's broken, that's for different reason. You can disable them by googling `InsecureRequestWarning` or reading https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecureRequestWarning
We are having the same problem with openstack modules. Solution was to set strategy to `linear` explicitly for play with those modules.
I found that it's better to have strategy: local for all playbooks running on localhost. It's not molecule specific, other localhost-bounded modules doing the same.
When we deal with crazy things around ssh (like switching from password ssh to key-based or reconfiguring something), it's possible to influence ansible behavior via `ansible_connection` variable. F.e. if you...