-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ratelimiting arguments does not work with multiple actions. The issue is that if there is a rate-limit in one action, subsequent actions will also not be executed. To solve this we first constrain rate-limiting only to post actions, since that is the main use-case. If we need it for other actions, the code can be extended accordingly. There are two reasons why an event will not be posted: - users selecting NoPost - rate-limiting We push the check for both of these cases in the do_action. Signed-off-by: Kornilios Kourtis <[email protected]>
- Loading branch information
Showing
3 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters