Closure nicht mehr in Goroutine ausführen.

This commit is contained in:
Marco Kittel 2025-06-29 09:11:23 +02:00
parent 17365edbbb
commit 07f17c6a02
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ func (f *ElioDateiFoo) ScanCsv(ctx context.Context, data chan<- CountryCsvData)
f.mu.Lock()
f.haveDone[v.filename] = time.Now()
f.mu.Unlock()
go f.process(v.filename, data)
f.process(v.filename, data)
}
}
}