swarm: fix flaky delivery tests (#18971)

This commit is contained in:
Janoš Guljaš
2019-01-30 14:03:11 +01:00
committed by Anton Evangelatov
parent c5c9cef5c0
commit 592bf6a59c
2 changed files with 1 additions and 8 deletions

View File

@@ -259,13 +259,6 @@ func (d *Delivery) RequestFromPeers(ctx context.Context, req *network.Request) (
if sp == nil {
return true
}
// nodes that do not provide stream protocol
// should not be requested, e.g. bootnodes
if !p.HasCap("stream") {
// TODO: if we have no errors, delete this if
log.Error("Delivery.RequestFromPeers: peer doesn't have stream cap. we should have returned at sp == nil")
return true
}
spID = &id
return false
})