mirror of
https://github.com/ansible/awx.git
synced 2026-01-18 21:21:21 -03:30
remove deepcopy, not sure how that slipped in
This commit is contained in:
parent
a1267a3dee
commit
86a9a921eb
@ -110,7 +110,7 @@ class BaseCallbackModule(CallbackBase):
|
||||
event_data.setdefault('uuid', str(uuid.uuid4()))
|
||||
|
||||
if 'res' in event_data:
|
||||
event_data['res'] = self.censor_result(copy.deepcopy(event_data['res']))
|
||||
event_data['res'] = self.censor_result(copy.copy(event_data['res']))
|
||||
|
||||
if event not in self.EVENTS_WITHOUT_TASK:
|
||||
task = event_data.pop('task', None)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user