fix a bug in isolated event handling

see: https://github.com/ansible/awx/issues/6280
This commit is contained in:
Ryan Petrello 2020-03-16 13:15:10 -04:00
parent 9ecd6ad0fb
commit b73e8d8a56
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777

View File

@ -301,7 +301,7 @@ class IsolatedManager(object):
# practice
# in this scenario, just ignore this event and try it
# again on the next sync
pass
continue
self.event_handler(event_data)
self.handled_events.add(event)