Skip to content

Commit e6813b3

Browse files
authored
fix: wire up proper linksystem to traverser (#411)
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.
1 parent fb93b38 commit e6813b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requestmanager/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func (rm *RequestManager) requestTask(requestID graphsync.RequestID) executor.Re
157157
return nil
158158
},
159159
Chooser: ipr.nodeStyleChooser,
160-
LinkSystem: rm.linkSystem,
160+
LinkSystem: *ipr.lsys,
161161
Budget: budget,
162162
PanicCallback: rm.panicCallback,
163163
}.Start(ctx)

0 commit comments

Comments
 (0)