mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove args from get_name() as we can't tell if any of the args are no_log
This commit is contained in:
parent
8ffc1fa838
commit
224d596336
1 changed files with 2 additions and 3 deletions
|
@ -107,11 +107,10 @@ class Task(Base, Conditional, Taggable, Become):
|
|||
elif self.name:
|
||||
return self.name
|
||||
else:
|
||||
flattened_args = self._merge_kv(self.args)
|
||||
if self._role:
|
||||
return "%s : %s %s" % (self._role.get_name(), self.action, flattened_args)
|
||||
return "%s : %s" % (self._role.get_name(), self.action)
|
||||
else:
|
||||
return "%s %s" % (self.action, flattened_args)
|
||||
return "%s" % (self.action,)
|
||||
|
||||
def _merge_kv(self, ds):
|
||||
if ds is None:
|
||||
|
|
Loading…
Reference in a new issue