Skip to content

Commit

Permalink
Merge pull request #7 from grafana/20220608_dependecies-ring-memberlist
Browse files Browse the repository at this point in the history
Ensure dependecies for ring, memberlist are respected
  • Loading branch information
simonswine committed Jun 8, 2022
2 parents efbae74 + ab201ca commit 1d66667
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkg/fire/fire.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,12 @@ func (f *Fire) setupModuleManager() error {

// Add dependencies
deps := map[string][]string{
All: {Agent, Ingester, Distributor},
Distributor: {Ring, Server},
Agent: {Server},
Ingester: {Server, MemberlistKV},
Ring: {MemberlistKV},
All: {Agent, Ingester, Distributor},
Distributor: {Ring, Server},
Agent: {Server},
Ingester: {Server, MemberlistKV},
Ring: {Server, MemberlistKV},
MemberlistKV: {Server},

// Store: {Overrides, IndexGatewayRing},
// Querier: {Store, Ring, Server, IngesterQuerier, TenantConfigs, UsageReport},
Expand Down

0 comments on commit 1d66667

Please sign in to comment.