Merge pull request #6237 from cpuguy83/fix_wrong_restore_error
Fix wrong error returned for image index lookup
This commit is contained in:
		| @@ -46,7 +46,7 @@ func WithRestoreImage(ctx context.Context, id string, client *Client, checkpoint | ||||
| 	return func(ctx context.Context, client *Client, c *containers.Container) error { | ||||
| 		name, ok := index.Annotations[checkpointImageNameLabel] | ||||
| 		if !ok || name == "" { | ||||
| 			return ErrRuntimeNameNotFoundInIndex | ||||
| 			return ErrImageNameNotFoundInIndex | ||||
| 		} | ||||
| 		snapshotter, ok := index.Annotations[checkpointSnapshotterNameLabel] | ||||
| 		if !ok || name == "" { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Maksym Pavlenko
					Maksym Pavlenko