mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Ensure environment is inherited properly (task->block/include->play)
This commit is contained in:
@@ -442,7 +442,7 @@ class Base:
|
||||
new_value = [ new_value ]
|
||||
|
||||
#return list(set(value + new_value))
|
||||
return [i for i,_ in itertools.groupby(value + new_value)]
|
||||
return [i for i,_ in itertools.groupby(value + new_value) if i is not None]
|
||||
|
||||
def __getstate__(self):
|
||||
return self.serialize()
|
||||
|
||||
@@ -323,8 +323,9 @@ class Block(Base, Become, Conditional, Taggable):
|
||||
Override for the 'tags' getattr fetcher, used from Base.
|
||||
'''
|
||||
environment = self._attributes['environment']
|
||||
if environment is None:
|
||||
environment = self._get_parent_attribute('environment', extend=True)
|
||||
parent_environment = self._get_parent_attribute('environment', extend=True)
|
||||
if parent_environment is not None:
|
||||
environment = self._extend_value(environment, parent_environment)
|
||||
|
||||
return environment
|
||||
|
||||
|
||||
@@ -383,8 +383,8 @@ class Task(Base, Conditional, Taggable, Become):
|
||||
Override for the 'tags' getattr fetcher, used from Base.
|
||||
'''
|
||||
environment = self._attributes['environment']
|
||||
if environment is None:
|
||||
environment = self._get_parent_attribute('environment')
|
||||
|
||||
parent_environment = self._get_parent_attribute('environment', extend=True)
|
||||
if parent_environment is not None:
|
||||
environment = self._extend_value(environment, parent_environment)
|
||||
return environment
|
||||
|
||||
|
||||
Reference in New Issue
Block a user