Use errgroup's context instead of command's context

This commit is contained in:
Nikolay Edigaryev 2026-01-28 12:15:38 +01:00
parent 6f06926064
commit c2d3b44478
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ func runWorker(cmd *cobra.Command, args []string) (err error) {
}
defer workerInstance.Close()
return workerInstance.Run(cmd.Context())
return workerInstance.Run(ctx)
})
}