Skip to content

Commit

Permalink
BS: Fix error message in registrar (#3426)
Browse files Browse the repository at this point in the history
"No beacons propagated" should be "No beacons registered" in the registrar.

Fixes #3388
  • Loading branch information
lukedirtwalker authored Nov 25, 2019
1 parent 68008fe commit c5f3d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/beacon_srv/internal/beaconing/registrar.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func (r *Registrar) run(ctx context.Context) error {
return nil
}
if s.count <= 0 {
return common.NewBasicError("No beacons propagated", nil, "candidates", expected)
return common.NewBasicError("No beacons registered", nil, "candidates", expected)
}
r.lastSucc = r.tick.now
r.logSummary(logger, s)
Expand Down

0 comments on commit c5f3d6a

Please sign in to comment.