From 21e484573cfb551e1b8d39209134238f1155a032 Mon Sep 17 00:00:00 2001 From: Lukas Vogel Date: Mon, 25 Nov 2019 12:38:14 +0100 Subject: [PATCH] BS: Fix error message in registrar "No beacons propagated" should be "No beacons registered" in the registrar. Fixes #3388 --- go/beacon_srv/internal/beaconing/registrar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/beacon_srv/internal/beaconing/registrar.go b/go/beacon_srv/internal/beaconing/registrar.go index 0770d2067b..bfdcfba863 100644 --- a/go/beacon_srv/internal/beaconing/registrar.go +++ b/go/beacon_srv/internal/beaconing/registrar.go @@ -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)