Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/querytee/goldfish/comparator.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func CompareResponses(sample *goldfish.QuerySample, cellAResp, cellBResp *Respon
// it is also possible we match some other unexpected cases
// where the hashes differ but the data is equivalent within tolerance (empty matrix?)

_, err := comparator.Compare(cellAResp.Body, cellBResp.Body, time.Time{})
_, err := comparator.Compare(cellAResp.Body, cellBResp.Body, sample.SampledAt)
if err == nil {
result.ComparisonStatus = goldfish.ComparisonStatusMatch
result.DifferenceDetails["tolerance_match"] = true
Expand Down