mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 06:51:46 +01:00
Don't process /send requests for users who have hit their ratelimit (#13134)
This commit is contained in:
parent
8330fc9953
commit
046a6513bc
2 changed files with 4 additions and 0 deletions
1
changelog.d/13134.misc
Normal file
1
changelog.d/13134.misc
Normal file
|
@ -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))
|
await self.clock.sleep(random.randint(1, 10))
|
||||||
raise ShadowBanError()
|
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
|
# 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
|
# 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
|
# a situation where event persistence can't keep up, causing
|
||||||
|
|
Loading…
Reference in a new issue