Merge pull request #13445 from n-st/tasks-string-repr

More meaningful string representation for meta tasks (like 'noop' and 'flush_handlers')
This commit is contained in:
James Cammarata 2015-12-07 08:10:54 -05:00
commit 540cbe0f64

View file

@ -133,7 +133,10 @@ class Task(Base, Conditional, Taggable, Become):
def __repr__(self):
''' returns a human readable representation of the task '''
return "TASK: %s" % self.get_name()
if self.get_name() == 'meta ':
return "TASK: meta (%s)" % self.args['_raw_params']
else:
return "TASK: %s" % self.get_name()
def _preprocess_loop(self, ds, new_ds, k, v):
''' take a lookup plugin name and store it correctly '''