Don't process /send requests for users who have hit their ratelimit (#13134)

code_spécifique_watcha
Shay 2 years ago committed by GitHub
parent 8330fc9953
commit 046a6513bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      changelog.d/13134.misc
  2. 3
      synapse/handlers/message.py

@ -0,0 +1 @@
Apply ratelimiting earlier in processing of /send request.

@ -903,6 +903,9 @@ class EventCreationHandler:
await self.clock.sleep(random.randint(1, 10))
raise ShadowBanError()
if ratelimit:
await self.request_ratelimiter.ratelimit(requester, update=False)
# We limit the number of concurrent event sends in a room so that we
# don't fork the DAG too much. If we don't limit then we can end up in
# a situation where event persistence can't keep up, causing

Loading…
Cancel
Save