Skip to content

Commit

Permalink
fix(pkg/oomstore): fix method buildRevisionRanges
Browse files Browse the repository at this point in the history
  • Loading branch information
jinghancc committed Nov 12, 2021
1 parent 81b8815 commit 6813c56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/oomstore/offline_feature_value.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (s *OomStore) buildRevisionRanges(ctx context.Context, groupID int16) ([]*m

return append(ranges, &metadatav2.RevisionRange{
MinRevision: revisions[len(revisions)-1].Revision,
MaxRevision: revisions[math.MaxInt64].Revision,
MaxRevision: math.MaxInt64,
DataTable: revisions[len(revisions)-1].DataTable,
}), nil
}

0 comments on commit 6813c56

Please sign in to comment.