Skip to content

Commit

Permalink
Merge pull request #7382 from ethan-daocloud/patch-2
Browse files Browse the repository at this point in the history
protokube/gce_volume.go: error info correction
  • Loading branch information
k8s-ci-robot committed Aug 6, 2019
2 parents 974abd0 + 0c6b86a commit 8568c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protokube/pkg/protokube/gce_volume.go
Expand Up @@ -181,7 +181,7 @@ func (v *GCEVolumes) buildGCEVolume(d *compute.Disk) (*Volume, error) {
for _, attachedTo := range d.Users {
u, err := gce.ParseGoogleCloudURL(attachedTo)
if err != nil {
return nil, fmt.Errorf("error parsing disk attachmnet url %q: %v", attachedTo, err)
return nil, fmt.Errorf("error parsing disk attachment url %q: %v", attachedTo, err)
}

vol.AttachedTo = u.Name
Expand Down

0 comments on commit 8568c64

Please sign in to comment.