From ae764077b4f8531a89907d66da924f855fc34f3f Mon Sep 17 00:00:00 2001 From: Andre Medeiros Date: Wed, 13 Jul 2022 17:01:04 -0400 Subject: [PATCH] increase batch size on scheduler --- internal/cmd/scheduler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cmd/scheduler.go b/internal/cmd/scheduler.go index 9bd44ad..1ac55fc 100644 --- a/internal/cmd/scheduler.go +++ b/internal/cmd/scheduler.go @@ -25,8 +25,8 @@ import ( ) const ( - batchSize = 250 - maxNotificationChecks = 2000 + batchSize = 500 + maxNotificationChecks = 5000 ) func SchedulerCmd(ctx context.Context) *cobra.Command {