refactor: remove sentry monitor from import job
1 file changed, 1 insertion(+), 2 deletions(-)
changed files
M cmd/searchix-web/main.go → cmd/searchix-web/main.go
@@ -11,7 +11,6 @@ "runtime/pprof" "sync" "badc0de.net/pkg/flagutil" - "github.com/getsentry/sentry-go" "alin.ovh/searchix/frontend" "alin.ovh/searchix/internal/components"@@ -175,7 +174,7 @@ wg.Add(1) go func() { defer wg.Done() - imp.StartUpdateTimer(ctx, sentry.CurrentHub().Clone()) + imp.StartUpdateTimer(ctx) }() <-ctx.Done()