From d1635b97cd8f64693cd9e8c155106f388cdedd80 Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@elixxir.ioo> Date: Mon, 11 Jan 2021 15:06:38 -0800 Subject: [PATCH] made comms authenticated --- ud/search.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ud/search.go b/ud/search.go index 41b9b0552..7dfcc34e0 100644 --- a/ud/search.go +++ b/ud/search.go @@ -123,9 +123,8 @@ func (m *Manager) Search(list fact.FactList, callback searchCallback, timeout ti }else{ fType = fmt.Sprintf("round failure: %v", fail.RoundInfo.ID) } - err = errors.Errorf("One or more rounds failed to resolve " + - "due to: %s; " + - "search not delivered", fType) + err = errors.Errorf("One or more rounds (%v) failed to " + + "resolve due to: %s; search not delivered", rounds, fType) // Return an error if the timeout is reached case <-timer.C: -- GitLab