| 107 | } |
| 108 | |
| 109 | type mostRecentCombiner struct { |
| 110 | trs map[string]*tempopb.TraceSearchMetadata |
| 111 | trsSorted []*tempopb.TraceSearchMetadata |
| 112 | keepMostRecent int |
| 113 | } |
| 114 | |
| 115 | func newMostRecentCombiner(limit int) *mostRecentCombiner { |
| 116 | return &mostRecentCombiner{ |
nothing calls this directly
no outgoing calls
no test coverage detected