From 0eb9167178b10a9bb0807b0a264127340d2eba12 Mon Sep 17 00:00:00 2001 From: stefanodvx <69367859+stefanodvx@users.noreply.github.com> Date: Tue, 15 Apr 2025 17:53:58 +0200 Subject: [PATCH] increase max routines in gotgbot config --- bot/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/main.go b/bot/main.go index 0783de9..4df32e9 100644 --- a/bot/main.go +++ b/bot/main.go @@ -38,7 +38,7 @@ func Start() { // log.Println("an error occurred while handling update:", err.Error()) return ext.DispatcherActionNoop }, - MaxRoutines: ext.DefaultMaxRoutines, + MaxRoutines: 500, }) updater := ext.NewUpdater(dispatcher, nil) registerHandlers(dispatcher)