Skip to content

Commit

Permalink
fixup! fixup! fixup! Add bloom planner and bloom builder to backend t…
Browse files Browse the repository at this point in the history
…arget

Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
  • Loading branch information
chaudum committed Aug 29, 2024
1 parent b496b0c commit 1c1435d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/bloombuild/common/ringwatcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ func (w *RingWatcher) lookupAddresses() {
return
}

for _, inst := range rs.Instances {
for i := range rs.Instances {
inst := rs.Instances[i]
state, err := w.ring.GetInstanceState(inst.Id)
if err != nil || state != ring.ACTIVE {
return
Expand Down

0 comments on commit 1c1435d

Please sign in to comment.