From 600850bdbfdfdc50c5f55296bf53cbb279acde78 Mon Sep 17 00:00:00 2001 From: John Claus Date: Sat, 16 May 2015 09:46:48 -0600 Subject: [PATCH] Toss ignored errors returned from Riemann connection phase --- raidman_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raidman_test.go b/raidman_test.go index 9463e24..c6479f8 100644 --- a/raidman_test.go +++ b/raidman_test.go @@ -158,7 +158,7 @@ func BenchmarkUDP(b *testing.B) { } func BenchmarkConcurrentTCP(b *testing.B) { - c, err := Dial("tcp", "localhost:5555") + c, _ := Dial("tcp", "localhost:5555") var event = &Event{ Host: "raidman", @@ -180,7 +180,7 @@ func BenchmarkConcurrentTCP(b *testing.B) { } func BenchmarkConcurrentUDP(b *testing.B) { - c, err := Dial("udp", "localhost:5555") + c, _ := Dial("udp", "localhost:5555") var event = &Event{ Host: "raidman",