Commit 31d8527e authored by rht's avatar rht

Fix 'ctx, _' to have explicit cancel

License: MIT
Signed-off-by: default avatarrht <rhtbot@gmail.com>
parent 323a2d54
...@@ -42,7 +42,8 @@ func TestBlocks(t *testing.T) { ...@@ -42,7 +42,8 @@ func TestBlocks(t *testing.T) {
t.Error("returned key is not equal to block key", err) t.Error("returned key is not equal to block key", err)
} }
ctx, _ := context.WithTimeout(context.TODO(), time.Second*5) ctx, cancel := context.WithTimeout(context.TODO(), time.Second*5)
defer cancel()
b2, err := bs.GetBlock(ctx, b.Key()) b2, err := bs.GetBlock(ctx, b.Key())
if err != nil { if err != nil {
t.Error("failed to retrieve block from BlockService", err) t.Error("failed to retrieve block from BlockService", err)
...@@ -75,7 +76,8 @@ func TestGetBlocksSequential(t *testing.T) { ...@@ -75,7 +76,8 @@ func TestGetBlocksSequential(t *testing.T) {
t.Log("one instance at a time, get blocks concurrently") t.Log("one instance at a time, get blocks concurrently")
for i := 1; i < len(servs); i++ { for i := 1; i < len(servs); i++ {
ctx, _ := context.WithTimeout(context.TODO(), time.Second*50) ctx, cancel := context.WithTimeout(context.TODO(), time.Second*50)
defer cancel()
out := servs[i].GetBlocks(ctx, keys) out := servs[i].GetBlocks(ctx, keys)
gotten := make(map[key.Key]*blocks.Block) gotten := make(map[key.Key]*blocks.Block)
for blk := range out { for blk := range out {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment