diff --git a/provider/docker.go b/provider/docker.go index 01ed10416..3764eb808 100644 --- a/provider/docker.go +++ b/provider/docker.go @@ -364,7 +364,7 @@ func listContainers(ctx context.Context, dockerClient client.APIClient) ([]docke for _, container := range containerList { containerInspected, err := dockerClient.ContainerInspect(ctx, container.ID) 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 { containersInspected = append(containersInspected, containerInspected) }