Fix typo
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
This commit is contained in:
parent
da0985fd16
commit
5fdbce3185
2 changed files with 2 additions and 2 deletions
|
@ -138,7 +138,7 @@ func (clnt *client) Create(containerID string, spec Spec, options ...CreateOptio
|
|||
ctr.restartManager.Cancel()
|
||||
ctr.clean()
|
||||
} else {
|
||||
return fmt.Errorf("Container %s is aleady active", containerID)
|
||||
return fmt.Errorf("Container %s is already active", containerID)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ func (clnt *client) restore(cont *containerd.Container, options ...CreateOption)
|
|||
|
||||
containerID := cont.Id
|
||||
if _, err := clnt.getContainer(containerID); err == nil {
|
||||
return fmt.Errorf("container %s is aleady active", containerID)
|
||||
return fmt.Errorf("container %s is already active", containerID)
|
||||
}
|
||||
|
||||
defer func() {
|
||||
|
|
Loading…
Reference in a new issue