fix: bug with initial batch size when updating paths

Signed-off-by: Brian McGee <brian@bmcgee.ie>
This commit is contained in:
Brian McGee 2024-01-02 16:30:26 +00:00
parent ada9a72a7e
commit 4f5e9e5b21
Signed by: brianmcgee
GPG Key ID: D49016E76AD1E8C0

View File

@ -110,6 +110,7 @@ func (f *Format) Run() error {
eg.Go(func() error {
batchSize := 1024
batch := make([]string, batchSize)
batch = batch[:0]
var pending, completed, changes int