Fix typo in conditional

pull/3603/head
Erik Johnston 2018-07-25 09:48:01 +01:00
parent 0b300d323a
commit a297ff2b16
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ class EventsStore(EventsWorkerStore):
for ev, ctx in events_context:
if ctx.state_group is None:
# This should only happen for outlier events.
if not event.internal_metadata.is_outlier():
if not ev.internal_metadata.is_outlier():
raise Exception(
"Context for new event %s has no state "
"group" % (ev.event_id, ),