Skip to content

Commit

Permalink
fix: wire up proper linksystem to traverser (#411)
Browse files Browse the repository at this point in the history
Was missed in #356

This doesn't break anything obvious because the loader isn't used from the
traverser's linksystem, and the traverser sets up defaults where the provided
linksystem is missing them. But, we don't get certain things, like
KnownReifiers, which are kind of important.
  • Loading branch information
rvagg authored Feb 28, 2023
1 parent fb93b38 commit e6813b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requestmanager/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func (rm *RequestManager) requestTask(requestID graphsync.RequestID) executor.Re
return nil
},
Chooser: ipr.nodeStyleChooser,
LinkSystem: rm.linkSystem,
LinkSystem: *ipr.lsys,
Budget: budget,
PanicCallback: rm.panicCallback,
}.Start(ctx)
Expand Down

0 comments on commit e6813b3

Please sign in to comment.