From 194feb312c73a4e2de6049253a75d21924e3b640 Mon Sep 17 00:00:00 2001 From: Andre Medeiros Date: Sat, 5 Nov 2022 20:25:41 -0400 Subject: [PATCH] increase poolsize a bit --- internal/cmd/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/worker.go b/internal/cmd/worker.go index 3d96d2a..f6d9381 100644 --- a/internal/cmd/worker.go +++ b/internal/cmd/worker.go @@ -52,7 +52,7 @@ func WorkerCmd(ctx context.Context) *cobra.Command { tracer := otel.Tracer(tag) - poolSize := consumers / 16 + poolSize := consumers / 8 db, err := cmdutil.NewDatabasePool(ctx, poolSize) if err != nil {