From a0bf33879605aa28911a4961567e5feb18155d46 Mon Sep 17 00:00:00 2001 From: henrygd Date: Wed, 16 Sep 2026 19:39:07 -0400 Subject: [PATCH] hub: raise max batch requests and lower max batch body size --- internal/hub/hub.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/hub/hub.go b/internal/hub/hub.go index 13cd7e6a..30548cf2 100644 --- a/internal/hub/hub.go +++ b/internal/hub/hub.go @@ -122,6 +122,8 @@ func (h *Hub) initialize(app core.App) error { settings := app.Settings() // batch requests (for alerts) settings.Batch.Enabled = true + settings.Batch.MaxRequests = 100 + settings.Batch.MaxBodySize = 1 << 20 // 1 MiB // set URL if APP_URL env is set if appURL, isSet := utils.GetEnv("APP_URL"); isSet { h.appURL = appURL