From 5913be64d751cc8055a675a8eb15af939b6c38fb Mon Sep 17 00:00:00 2001 From: David Wilson Date: Sun, 22 Apr 2018 02:49:31 +0100 Subject: [PATCH] docs: remove last remaining major risk :D --- ansible_mitogen/services.py | 2 +- docs/ansible.rst | 14 -------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/ansible_mitogen/services.py b/ansible_mitogen/services.py index 2a647f9a..de7f8135 100644 --- a/ansible_mitogen/services.py +++ b/ansible_mitogen/services.py @@ -368,7 +368,7 @@ class FileService(mitogen.service.Service): #: pump. With max_queue_size=1MiB and a sleep of 10ms, maximum throughput #: on any single stream is 100MiB/sec, which is 5x what SSH can handle on #: my laptop. - sleep_delay = 0.01 + sleep_delay_ms = 0.01 def __init__(self, router): super(FileService, self).__init__(router) diff --git a/docs/ansible.rst b/docs/ansible.rst index 5abfcbf2..5d5a63a9 100644 --- a/docs/ansible.rst +++ b/docs/ansible.rst @@ -125,20 +125,6 @@ Limitations This is a proof of concept: issues below are exclusively due to code immaturity. -High Risk -~~~~~~~~~ - -* Transfer of large files using certain Ansible-internal APIs, such as - triggered via the ``copy`` module, will cause corresponding memory and CPU - spikes on both host and target machine, due to delivering the file as a - single message. If many machines are targetted, the controller could easily - exhaust available RAM. This will be fixed soon as it's likely to be tickled - by common playbooks. - - -Low Risk -~~~~~~~~ - * Only Ansible 2.4 is being used for development, with occasional tests under 2.5, 2.3 and 2.2. It should be more than possible to fully support at least 2.3, if not also 2.2.