docs: concision

This commit is contained in:
David Wilson 2018-04-13 13:54:53 +01:00
parent cc980569a3
commit a96969ee29
1 changed files with 6 additions and 6 deletions

View File

@ -369,11 +369,11 @@ future.
Interpreter Recycling
~~~~~~~~~~~~~~~~~~~~~
To avoid accidental DoS of targets, the extension stops creating persistent
interpreters after the 20th interpreter has been created. Instead the most
recently created interpreter is shut down to make room for any new interpreter.
This is to avoid situations like below from triggering memory exhaustion by
spawning a huge number of interpreters.
To prevent accidental DoS, the extension stops creating persistent interpreters
after the 20th interpreter has been created. Instead the most recently created
interpreter is shut down to make room for any new interpreter. This is to avoid
situations like below from triggering memory exhaustion by spawning a huge
number of interpreters.
.. code-block:: yaml
@ -392,7 +392,7 @@ spawning a huge number of interpreters.
dest: "~{{item}}/.bashrc"
with_items: "{{user_directory}}"
The recycling behaviour does not occur for direct connections from the Ansible
The recycling behaviour does not occur for direct connections from the
controller, and it is keyed on a per-host basis, i.e. up to 20 interpreters may
exist for each directly connected target host.