Skip to content
Snippets Groups Projects
Commit 45fbe4ff authored by Ilya Zhuravlev's avatar Ilya Zhuravlev
Browse files

Fix appservices being backlogged and not receiving new events due to a bug in...

Fix appservices being backlogged and not receiving new events due to a bug in notify_interested_services
parent f851bc81
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ class ApplicationServicesHandler(object):
limit = 100
while True:
upper_bound, events = yield self.store.get_new_events_for_appservice(
upper_bound, limit
self.current_max, limit
)
if not events:
......@@ -105,9 +105,6 @@ class ApplicationServicesHandler(object):
)
yield self.store.set_appservice_last_pos(upper_bound)
if len(events) < limit:
break
finally:
self.is_processing = False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment