Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable longrunning tests to run #19208

Merged
merged 10 commits into from
Mar 5, 2019
Prev Previous commit
Next Next commit
swarm/network/stream: disabled healthy check in delivery tests
  • Loading branch information
holisticode committed Mar 4, 2019
commit a9e3bb8551af36b903d985567fe1206a6d11b117
8 changes: 5 additions & 3 deletions swarm/network/stream/delivery_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -536,9 +536,11 @@ func testDeliveryFromNodes(t *testing.T, nodes, chunkCount int, skipCheck bool)

log.Debug("Waiting for kademlia")
// TODO this does not seem to be correct usage of the function, as the simulation may have no kademlias
if _, err := sim.WaitTillHealthy(ctx); err != nil {
return err
}
/*
if _, err := sim.WaitTillHealthy(ctx); err != nil {
return err
}
*/

//get the pivot node's filestore
item, ok := sim.NodeItem(pivot, bucketKeyFileStore)
Expand Down