diff options
author | Ilya Zhuravlev <whatever@xyz.is> | 2017-11-07 22:23:22 +0300 |
---|---|---|
committer | Ilya Zhuravlev <whatever@xyz.is> | 2017-11-07 22:23:22 +0300 |
commit | d46386d57e4756e3bd5ca6ed17337d54e73dbbbf (patch) | |
tree | 3ec431a79a5fd5e2fa7e2c45d4f6f5a233e80f78 /synapse/handlers/appservice.py | |
parent | Fix appservice tests to account for new behavior of notify_interested_services (diff) | |
download | synapse-d46386d57e4756e3bd5ca6ed17337d54e73dbbbf.tar.xz |
Remove useless assignment in notify_interested_services
Diffstat (limited to 'synapse/handlers/appservice.py')
-rw-r--r-- | synapse/handlers/appservice.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/handlers/appservice.py b/synapse/handlers/appservice.py index 5ce752a196..543bf28aec 100644 --- a/synapse/handlers/appservice.py +++ b/synapse/handlers/appservice.py @@ -70,7 +70,6 @@ class ApplicationServicesHandler(object): with Measure(self.clock, "notify_interested_services"): self.is_processing = True try: - upper_bound = self.current_max limit = 100 while True: upper_bound, events = yield self.store.get_new_events_for_appservice( |