We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3649ddb commit e0879f9Copy full SHA for e0879f9
pkg/client/pull/state/layer.go
@@ -202,7 +202,7 @@ func (l *LayerAlreadyExists) Status() string {
202
}
203
204
func (l *LayerAlreadyExists) Next(event events.LayerEvent) (Layer, error) {
205
- return nil, fmt.Errorf("already completed, tried %T", event)
+ return nil, fmt.Errorf("already completed, tried %T on layer-already-exists", event)
206
207
208
type LayerPullComplete struct {
@@ -214,5 +214,5 @@ func (l *LayerPullComplete) Status() string {
214
215
216
func (l *LayerPullComplete) Next(event events.LayerEvent) (Layer, error) {
217
+ return nil, fmt.Errorf("already completed, tried %T on layer-pull-complete", event)
218
0 commit comments