From 80499346d14b3bd605a14a01614a82119b4f736b Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 17 Jun 2014 15:59:02 -0500 Subject: [PATCH] Remove stray FIXME --- lib/ansible/runner/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/runner/__init__.py b/lib/ansible/runner/__init__.py index 4bc78bc3b11..e2c3832a87a 100644 --- a/lib/ansible/runner/__init__.py +++ b/lib/ansible/runner/__init__.py @@ -198,7 +198,7 @@ class Runner(object): self.vault_pass = vault_pass self.no_log = no_log - if self.transport == 'smart': # FIXME + if self.transport == 'smart': # if the transport is 'smart' see if SSH can support ControlPersist if not use paramiko # 'smart' is the default since 1.2.1/1.3 cmd = subprocess.Popen(['ssh','-o','ControlPersist'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)