Skip to content

Commit 04aa15c

Browse files
Update services/iaasalpha/wait/wait.go
Co-authored-by: Vicente Pinto <[email protected]>
1 parent 3a3190e commit 04aa15c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/iaasalpha/wait/wait.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ func ImageUploadWaitHandler(ctx context.Context, a APIClientInterface, projectId
358358
return false, image, err
359359
}
360360
if image.Id == nil || image.Status == nil {
361-
return false, image, fmt.Errorf("create failed for image with id %s, the response is not valid: the id or the status are missing", imageId)
361+
return false, image, fmt.Errorf("upload failed for image with id %s, the response is not valid: the id or the status are missing", imageId)
362362
}
363363
if *image.Id == imageId && *image.Status == ImageAvailableStatus {
364364
return true, image, nil

0 commit comments

Comments
 (0)