Skip to content

Commit

Permalink
fix lint and tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
fredcarle committed Aug 20, 2024
1 parent 120dcde commit 8a7a122
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1493,8 +1493,6 @@ github.com/viant/assertly v0.4.8/go.mod h1:aGifi++jvCrUaklKEKT0BU95igDNaqkvz+49u
github.com/viant/toolbox v0.24.0/go.mod h1:OxMCG57V0PXuIP2HNQrtJf2CjqdmbrOx5EkMILuUhzM=
github.com/vito/go-sse v1.1.1 h1:9TlsS/xk9++g+W61ZR8dusNq2BAsqR1Kq8NhMfqpzGI=
github.com/vito/go-sse v1.1.1/go.mod h1:2wkcaQ+jtlZ94Uve8gYZjFpL68luAjssTINA2hpgcZs=
github.com/warpfork/go-testmark v0.12.1 h1:rMgCpJfwy1sJ50x0M0NgyphxYYPMOODIJHhsXyEHU0s=
github.com/warpfork/go-testmark v0.12.1/go.mod h1:kHwy7wfvGSPh1rQJYKayD4AbtNaeyZdcGi9tNJTaa5Y=
github.com/warpfork/go-wish v0.0.0-20220906213052-39a1cc7a02d0 h1:GDDkbFiaK8jsSDJfjId/PEGEShv6ugrt4kYsC5UIDaQ=
github.com/warpfork/go-wish v0.0.0-20220906213052-39a1cc7a02d0/go.mod h1:x6AKhvSSexNrVSrViXSHUEbICjmGXhtgABaHIySUSGw=
github.com/wasmerio/wasmer-go v1.0.4 h1:MnqHoOGfiQ8MMq2RF6wyCeebKOe84G88h5yv+vmxJgs=
Expand Down
9 changes: 8 additions & 1 deletion net/sync_dag.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,14 @@ func loadBlockLinks(ctx context.Context, lsys linking.LinkSystem, block *coreblo
cancel()
return
}
loadBlockLinks(ctx, lsys, linkBlock)
err = loadBlockLinks(ctx, lsys, linkBlock)
if err != nil {
asyncErrOnce.Do(func() {
asyncErr = err
})
cancel()
return
}
}(lnk)
}
wg.Wait()
Expand Down

0 comments on commit 8a7a122

Please sign in to comment.