| 45 | func (m *mockJobSharder) Owns(string) bool { return true } |
| 46 | |
| 47 | type mockOverrides struct { |
| 48 | blockRetention time.Duration |
| 49 | disabled bool |
| 50 | maxBytesPerTrace int |
| 51 | maxCompactionWindow time.Duration |
| 52 | } |
| 53 | |
| 54 | func (m *mockOverrides) BlockRetentionForTenant(_ string) time.Duration { |
| 55 | return m.blockRetention |
nothing calls this directly
no outgoing calls
no test coverage detected