forked from MirrorHub/synapse
Merge pull request #2856 from matrix-org/erikj/remove_ratelimit
Remove pointless ratelimit check
This commit is contained in:
commit
053255f36c
1 changed files with 0 additions and 5 deletions
|
@ -403,11 +403,6 @@ class EventCreationHandler(object):
|
|||
"Tried to send member event through non-member codepath"
|
||||
)
|
||||
|
||||
# We check here if we are currently being rate limited, so that we
|
||||
# don't do unnecessary work. We check again just before we actually
|
||||
# send the event.
|
||||
yield self.base_handler.ratelimit(requester, update=False)
|
||||
|
||||
user = UserID.from_string(event.sender)
|
||||
|
||||
assert self.hs.is_mine(user), "User must be our own: %s" % (user,)
|
||||
|
|
Loading…
Reference in a new issue