mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 03:10:42 -03:30
disable activity stream for relaunched job label associations
This commit is contained in:
parent
77a8abbc25
commit
d00b8549b4
@ -838,8 +838,11 @@ class UnifiedJob(PolymorphicModel, PasswordFieldsModel, CommonModelNameNotUnique
|
||||
setattr(unified_job, fd, val)
|
||||
unified_job.save()
|
||||
|
||||
# Labels coppied here
|
||||
copy_m2m_relationships(self, unified_job, fields)
|
||||
# Labels copied here
|
||||
from awx.main.signals import disable_activity_stream
|
||||
with disable_activity_stream():
|
||||
copy_m2m_relationships(self, unified_job, fields)
|
||||
|
||||
return unified_job
|
||||
|
||||
def launch_prompts(self):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user