Skip to content

Commit

Permalink
fix: remove broadcaster warnings
Browse files Browse the repository at this point in the history
Since we're enabled HTTP by default, it no longer makes sense to show this warning
  • Loading branch information
palkan committed Apr 17, 2024
1 parent 45fe846 commit 0dcce5d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,10 +322,6 @@ func (r *Runner) runNode() (*node.Node, error) {
}

for _, broadcaster := range broadcasters {
if !broadcaster.IsFanout() && !subscriber.IsMultiNode() {
r.log.Warn("Using a non-distributed broadcaster without a pub/sub enabled; each broadcasted message is only processed by a single node")
}

err = broadcaster.Start(r.errChan)
if err != nil {
return nil, errorx.Decorate(err, "failed to start broadcaster")
Expand Down

0 comments on commit 0dcce5d

Please sign in to comment.