mirror of
https://github.com/distribution/distribution
synced 2025-02-17 20:39:35 +01:00
Address possible goroutine leak in notification library
Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
parent
b5bae799e3
commit
2896c32d39
@ -53,6 +53,7 @@ type httpStatusListener interface {
|
||||
func (hs *httpSink) Write(events ...Event) error {
|
||||
hs.mu.Lock()
|
||||
defer hs.mu.Unlock()
|
||||
defer hs.client.Transport.(*headerRoundTripper).CloseIdleConnections()
|
||||
|
||||
if hs.closed {
|
||||
return ErrSinkClosed
|
||||
@ -83,6 +84,7 @@ func (hs *httpSink) Write(events ...Event) error {
|
||||
|
||||
return fmt.Errorf("%v: error posting: %v", hs, err)
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
// The notifier will treat any 2xx or 3xx response as accepted by the
|
||||
// endpoint.
|
||||
|
Loading…
Reference in New Issue
Block a user