From 865f11bc09d68c00b5602b48d8c9fdf5d94b9bfd Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 19 May 2026 20:33:02 +0000 Subject: [PATCH] Disable fieldseeker data sync This is creating a large number of goroutines that are requesting a large number of database connections, possibly contributing to the pool getting exhausted Issue: #3 --- platform/start.go | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/platform/start.go b/platform/start.go index 8f7c777d..81c86007 100644 --- a/platform/start.go +++ b/platform/start.go @@ -55,12 +55,14 @@ func StartAll(ctx context.Context) error { newOAuthTokenChannel = make(chan struct{}, 10) - waitGroup.Add(1) - go func() { - defer waitGroup.Done() - refreshFieldseekerData(ctx, newOAuthTokenChannel) - log.Debug().Msg("Exiting Fieldseeker refresh goroutine") - }() + /* + waitGroup.Add(1) + go func() { + defer waitGroup.Done() + refreshFieldseekerData(ctx, newOAuthTokenChannel) + log.Debug().Msg("Exiting Fieldseeker refresh goroutine") + }() + */ waitGroup.Add(1) go func() { defer waitGroup.Done()