diff --git a/awx/main/middleware.py b/awx/main/middleware.py index 86650a9a42..4906bfea26 100644 --- a/awx/main/middleware.py +++ b/awx/main/middleware.py @@ -34,7 +34,7 @@ class ActivityStreamMiddleware(object): instance.save() else: obj1_type_actual = instance.object1_type.split(".")[-1] - if obj1_type_actual in ("InventoryUpdate", "ProjectUpdate", "JobEvent") and instance.id is not None: + if obj1_type_actual in ("InventoryUpdate", "ProjectUpdate", "JobEvent", "Job") and instance.id is not None: instance.delete() return response