We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4e3f0cb + f6a0a9f commit 856ed57Copy full SHA for 856ed57
unixfs/ipld-merkledag/hamt/hamt.go
@@ -339,7 +339,7 @@ func (ds *Shard) EnumLinksAsync(ctx context.Context) <-chan format.LinkResult {
339
defer cancel()
340
getLinks := makeAsyncTrieGetLinks(ds.dserv, linkResults)
341
cset := cid.NewSet()
342
- err := dag.EnumerateChildrenAsync(ctx, getLinks, ds.cid, cset.Visit)
+ err := dag.WalkParallel(ctx, getLinks, ds.cid, cset.Visit)
343
if err != nil {
344
emitResult(ctx, linkResults, format.LinkResult{Link: nil, Err: err})
345
}
0 commit comments