Project

General

Profile

Bug #7491

Updated by Peter Amstutz over 8 years ago

Keepproxy (which uses keepclient) is failing requests with the error "read tcp 10.26.0.7:25107: use of closed network connection".    We have had similar errors in the past which were due to connection reuse in the Go http package.    This has the side effect that if it tries to reuse a connection that's been closed, it will return an error instead of trying to reestablish a connection.    The keepclient package should handle closed connection errors by retrying the request. 

Back