Fix typo in error message. (#471)
This commit is contained in:
parent
2a735e815a
commit
dcf98d13c8
1 changed files with 1 additions and 1 deletions
|
@ -364,7 +364,7 @@ func listContainers(ctx context.Context, dockerClient client.APIClient) ([]docke
|
||||||
for _, container := range containerList {
|
for _, container := range containerList {
|
||||||
containerInspected, err := dockerClient.ContainerInspect(ctx, container.ID)
|
containerInspected, err := dockerClient.ContainerInspect(ctx, container.ID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("Failed to inpsect container %s, error: %s", container.ID, err)
|
log.Warnf("Failed to inspect container %s, error: %s", container.ID, err)
|
||||||
} else {
|
} else {
|
||||||
containersInspected = append(containersInspected, containerInspected)
|
containersInspected = append(containersInspected, containerInspected)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue