()
| 154 | } |
| 155 | |
| 156 | func (t *App) initLiveStoreRing() (services.Service, error) { |
| 157 | return t.initReadRing(t.cfg.LiveStore.Ring.ToRingConfig(), ringLiveStore, ringLiveStore) |
| 158 | } |
| 159 | |
| 160 | func (t *App) initReadRing(cfg ring.Config, name, key string) (*ring.Ring, error) { |
| 161 | ring, err := tempo_ring.New(cfg, name, key, prometheus.DefaultRegisterer) |
nothing calls this directly
no test coverage detected