Skip to content

Commit

Permalink
fix: add federated lens
Browse files Browse the repository at this point in the history
  • Loading branch information
brucexc committed Jun 4, 2024
1 parent d78664f commit be3a769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/node/monitor/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type CheckpointState struct {
func (m *Monitor) MonitorWorkerStatus(ctx context.Context) error {
var wg sync.WaitGroup

errChan := make(chan error, len(m.config.Component.Decentralized)+len(m.config.Component.RSS))
errChan := make(chan error, len(m.config.Component.Decentralized)+len(m.config.Component.RSS)+len(m.config.Component.Federated))

processWorker := func(w *config.Module, processFunc func(context.Context, *config.Module) error) {
wg.Add(1)
Expand Down

0 comments on commit be3a769

Please # to comment.