()
| 279 | } |
| 280 | |
| 281 | func (t *Cortex) initDistributor() (serv services.Service, err error) { |
| 282 | t.API.RegisterDistributor(t.Distributor, t.Cfg.Distributor, t.OverridesConfig, prometheus.DefaultRegisterer) |
| 283 | |
| 284 | return nil, nil |
| 285 | } |
| 286 | |
| 287 | // initQueryable instantiates the queryable and promQL engine used to service queries to |
| 288 | // Cortex. It also registers the API endpoints associated with those two services. |
nothing calls this directly
no test coverage detected