You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a context to close connections, the goroutine blocking on the
context to close the connection will keep a reference to the connection,
so it is never free'd from memory. For long running processes, this
means that we accumulate connections stale indefinitely.
Implement a Client.Closed() to be used by clients to monitor when a
connection is closed. This likely has other use-cases.
0 commit comments