From 7b3cb2126ceb93fa55a1946809a237f8b5d0263b Mon Sep 17 00:00:00 2001 From: Abhijit Menon-Sen Date: Fri, 31 Jul 2015 06:31:38 +0530 Subject: [PATCH 1/2] Remove outdated FIXME; ROLE_CACHE is already implemented below --- lib/ansible/playbook/role/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ansible/playbook/role/__init__.py b/lib/ansible/playbook/role/__init__.py index 323709bfe88..415ce12d1f8 100644 --- a/lib/ansible/playbook/role/__init__.py +++ b/lib/ansible/playbook/role/__init__.py @@ -93,7 +93,6 @@ class Role(Base, Become, Conditional, Taggable): @staticmethod def load(role_include, play, parent_role=None): - # FIXME: add back in the role caching support try: # The ROLE_CACHE is a dictionary of role names, with each entry # containing another dictionary corresponding to a set of parameters From 2cb7cd837966db12625a11f328bed2ce38171444 Mon Sep 17 00:00:00 2001 From: Abhijit Menon-Sen Date: Sat, 1 Aug 2015 09:34:59 +0530 Subject: [PATCH 2/2] Remove outdated FIXME; _compute_delegate is called below --- lib/ansible/executor/task_executor.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ansible/executor/task_executor.py b/lib/ansible/executor/task_executor.py index f417a02264e..2fa7901fe73 100644 --- a/lib/ansible/executor/task_executor.py +++ b/lib/ansible/executor/task_executor.py @@ -411,7 +411,6 @@ class TaskExecutor: correct connection object from the list of connection plugins ''' - # FIXME: delegate_to calculation should be done here # FIXME: calculation of connection params/auth stuff should be done here if not self._play_context.remote_addr: