Skip to content
Snippets Groups Projects
Commit 8f8e817f authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Merge branch 'Ursula/UD' of gitlab.com:elixxir/client into Ursula/UD

parents 393961e9 aa9875a1
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,7 @@ func (m *Manager) Lookup(uid *id.ID, callback lookupCallback, timeout time.Durat
select {
// Return an error if the round fails
case fail := <-roundFailChan:
if states.Round(fail.RoundInfo.State)==states.FAILED{
if states.Round(fail.RoundInfo.State)==states.FAILED || fail.TimedOut{
fType := ""
if fail.TimedOut{
fType = "timeout"
......
......@@ -120,7 +120,7 @@ func (m *Manager) Search(list fact.FactList, callback searchCallback, timeout ti
select {
// Return an error if the round fails
case fail := <-roundFailChan:
if states.Round(fail.RoundInfo.State)==states.FAILED{
if states.Round(fail.RoundInfo.State)==states.FAILED || fail.TimedOut{
fType := ""
if fail.TimedOut{
fType = "timeout"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment