(blocks []*bucketindex.Block)
| 697 | } |
| 698 | |
| 699 | func convertBlockULIDToString(blocks []*bucketindex.Block) []string { |
| 700 | res := make([]string, len(blocks)) |
| 701 | for idx, b := range blocks { |
| 702 | res[idx] = b.ID.String() |
| 703 | } |
| 704 | return res |
| 705 | } |
no test coverage detected