Merge pull request #2856 from matrix-org/erikj/remove_ratelimit

Remove pointless ratelimit check
pull/2826/merge
Erik Johnston 2018-02-07 11:12:14 +00:00 committed by GitHub
commit 053255f36c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -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,)