fix: linter issue

This commit is contained in:
Juan Pablo Villafáñez
2025-05-09 11:49:17 +02:00
committed by Jörn Friedrich Dreyer
parent 9e1b80a1be
commit 7727c3ff1b
2 changed files with 2 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ func NewPostprocessingService(ctx context.Context, logger log.Logger, sto store.
func (pps *PostprocessingService) Run() error {
wg := sync.WaitGroup{}
for i := 0; i < pps.c.Workers; i++ {
for range pps.c.Workers {
wg.Add(1)
go func() {
defer wg.Done()