1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/lib/ansible/executor
Toshio Kuratomi 7e54c9a468 No longer try to import __version__ from release.py. (#16817)
I'm not sure why that would be desirable -- we really want __version__
to come from the controller whereas importing will come from the client
node.  If it turns out there was a reason to do that, please be sure to
use an exception handler that catches all exceptions instead of only
catching ImportError:

```
try:
    from ansible.release import __version__, __author__
except:
    __version__ = [...]
```

Fixes #16523
2016-07-25 11:16:27 -07:00
..
process Use loop_control.loop_var directly 2016-07-01 07:03:42 +05:30
__init__.py Making the switch to v2 2015-05-03 21:47:26 -05:00
module_common.py No longer try to import __version__ from release.py. (#16817) 2016-07-25 11:16:27 -07:00
play_iterator.py make timeout decorator for facts have a configurable duration (#16551) 2016-07-08 17:46:41 -04:00
playbook_executor.py Take previously failed/unreachable hosts into account when checking the batch 2016-06-21 16:47:38 -05:00
stats.py Making the switch to v2 2015-05-03 21:47:26 -05:00
task_executor.py fxed typo 2016-07-14 09:05:01 -04:00
task_queue_manager.py Add a function to check for killed processes in all strategies (#16684) 2016-07-14 16:37:35 -04:00
task_result.py add jimi-c's unit test for squashed skip results, tweaked is_skipped() logic to pass 2016-05-05 15:29:10 -07:00