mirror of
https://github.com/ansible/awx.git
synced 2026-08-06 21:01:47 -02:30
Fix an issue with the Activity Stream where we weren't performing the right type conversion to track object types
This commit is contained in:
@@ -24,7 +24,8 @@ class ActivityStreamRegistrar(object):
|
||||
m2m_changed.connect(activity_stream_associate, sender=m2m_attr.through,
|
||||
dispatch_uid=str(self.__class__) + str(m2m_attr.through) + "_associate")
|
||||
except AttributeError:
|
||||
logger.warning("Failed to attach m2m activity stream tracker on class %s attribute %s" % (model, m2mfield.name))
|
||||
pass
|
||||
#logger.warning("Failed to attach m2m activity stream tracker on class %s attribute %s" % (model, m2mfield.name))
|
||||
|
||||
def disconnect(self, model):
|
||||
if model in self.models:
|
||||
|
||||
Reference in New Issue
Block a user