From 6f510b322e656f99c528229bcda98b0574b06976 Mon Sep 17 00:00:00 2001 From: Jeromy Date: Tue, 28 Apr 2015 14:48:28 -0700 Subject: [PATCH] label timeout error from reuseport/poll --- .../_workspace/src/github.com/jbenet/go-reuseport/poll/error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Godeps/_workspace/src/github.com/jbenet/go-reuseport/poll/error.go b/Godeps/_workspace/src/github.com/jbenet/go-reuseport/poll/error.go index c13fb8132..28b26a9d2 100644 --- a/Godeps/_workspace/src/github.com/jbenet/go-reuseport/poll/error.go +++ b/Godeps/_workspace/src/github.com/jbenet/go-reuseport/poll/error.go @@ -4,6 +4,6 @@ var errTimeout = &timeoutError{} type timeoutError struct{} -func (e *timeoutError) Error() string { return "i/o timeout" } +func (e *timeoutError) Error() string { return "i/o timeout (reuseport poll)" } func (e *timeoutError) Timeout() bool { return true } func (e *timeoutError) Temporary() bool { return true }