SlyMarbo / spdy

[deprecated] A full-featured SPDY library for the Go language.
BSD 2-Clause "Simplified" License
116 stars 13 forks source link

Dealing with GOAWAY received #69

Closed chendo closed 10 years ago

chendo commented 10 years ago

How should I be dealing with GOAWAY received when using spdy with http.Client? Is there a way to reset the spdy connection without making a new Transport?

SlyMarbo commented 10 years ago

Transport will now check to see whether the connection has been closed and, if so, make a new connection. You will also now get separate errors for whether the connection has been closed entirely or a GOAWAY has been received but the connection is still active.

Fixed in d6d5731