Skip to content

Commit

Permalink
feat(notifications): increase daily test webhook allowance
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbitfly committed Dec 14, 2024
1 parent 903b3a8 commit fa83d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/pkg/notification/sending.go
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ func SendTestWebhookNotification(ctx context.Context, userId types.UserId, webho
if err != nil {
return err
}
if count > 10 {
if count > 100 {
return fmt.Errorf("rate limit has been exceeded")
}

Expand Down

0 comments on commit fa83d6e

Please sign in to comment.