Skip to content

Commit

Permalink
engine: update rate limit rules for on-call user notifications (#4262)
Browse files Browse the repository at this point in the history
  • Loading branch information
mastercactapus authored Feb 3, 2025
1 parent 44e70b1 commit 241dd50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/message/ratelimit.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ func init() {
perCM.
WithMsgTypes(notification.MessageTypeScheduleOnCallUsers).
AddRules([]ThrottleRule{
{Count: 2, Per: 15 * time.Minute},
{Count: 4, Per: 1 * time.Hour, Smooth: true},
{Count: 3, Per: 1 * time.Minute},
{Count: 20, Per: 1 * time.Hour, Smooth: true},
})

// status notifications
Expand Down

0 comments on commit 241dd50

Please sign in to comment.