From 6ef667c2e0c286454a1c78c24033ab4791a12efe Mon Sep 17 00:00:00 2001 From: Thomas Hipp Date: Wed, 4 Dec 2024 14:40:08 +0100 Subject: [PATCH] pkg/routine: Update comment --- pkg/routine/routine.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/routine/routine.go b/pkg/routine/routine.go index 175645c4..e8614534 100755 --- a/pkg/routine/routine.go +++ b/pkg/routine/routine.go @@ -81,8 +81,7 @@ func RunNamed(parentCtx context.Context, name string, routine func(context.Conte return Run(parentCtx, routine) } -// Run runs the given function in a new background context. The new context -// inherits the logger and oauth2 authentication of the parent context. Panics +// Run runs the given function in a new background context. Panics // thrown in the function are logged and sent to sentry. The routines context is // canceled if the program receives a shutdown signal (SIGINT, SIGTERM), if the // returned CancelFunc is called, or if the routine returned.