소스 검색

Merge pull request #39318 from thaJeztah/fix_typo

Fix typo retreive -> retrieve
Tõnis Tiigi 6 년 전
부모
커밋
db18c6f133
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libcontainerd/remote/client.go

+ 1 - 1
libcontainerd/remote/client.go

@@ -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)