Merge pull request #39318 from thaJeztah/fix_typo

Fix typo retreive -> retrieve
This commit is contained in:
Tõnis Tiigi 2019-06-05 16:31:11 -07:00 committed by GitHub
commit db18c6f133
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -185,7 +185,7 @@ func (c *client) Start(ctx context.Context, id, checkpointDir string, withStdin
}
labels, err := ctr.Labels(ctx)
if err != nil {
return -1, errors.Wrap(err, "failed to retreive labels")
return -1, errors.Wrap(err, "failed to retrieve labels")
}
bundle := labels[DockerContainerBundlePath]
uid, gid := getSpecUser(spec)