Skip to content

Commit

Permalink
Upgrade maxScheduledPerMinute
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Sep 23, 2024
1 parent 30a1c82 commit 7b8b83e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/alerting/server/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const rulesSchema = schema.object({
}),
enforce: schema.boolean({ defaultValue: false }), // if enforce is false, only warnings will be shown
}),
maxScheduledPerMinute: schema.number({ defaultValue: 32000, max: 32000, min: 0 }),
maxScheduledPerMinute: schema.number({ defaultValue: 1000000, max: 1000000, min: 0 }),
overwriteProducer: schema.maybe(
schema.oneOf([
schema.literal('observability'),
Expand Down

0 comments on commit 7b8b83e

Please sign in to comment.