mirror of
https://github.com/docker/cli.git
synced 2026-08-24 10:05:37 -05:00
full diff: https://github.com/docker/go-events/compare/605354379745...dbf6103125a4 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
9 lines
264 B
Go
9 lines
264 B
Go
package events
|
|
|
|
import "fmt"
|
|
|
|
// ErrSinkClosed is returned if a write is issued to a sink that has been
|
|
// closed. If encountered, the error should be considered terminal and
|
|
// retries will not be successful.
|
|
var ErrSinkClosed = fmt.Errorf("events: sink closed")
|