Skip to content

Commit

Permalink
Merge pull request #46 from aserto-dev/fix-check-trace
Browse files Browse the repository at this point in the history
Fix missing trace in CheckResponse
ronenh authored May 27, 2024
2 parents b9b290d + 69ac43b commit 8cedac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache/check.go
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ func (c *Cache) Check(req *dsr.CheckRequest, relReader graph.RelationReader) (*d
return nil, err
}

return &dsr.CheckResponse{Check: ok}, nil
return &dsr.CheckResponse{Check: ok, Trace: checker.Trace()}, nil
}

type graphSearch interface {

0 comments on commit 8cedac4

Please sign in to comment.