Commit 849454cd authored by Carlory's avatar Carlory

fix typo in docker_container.go

Signed-off-by: 's avatarCarlory <fanbaofa@gmail.com>
parent ee39d359
...@@ -336,7 +336,7 @@ func (ds *dockerService) ContainerStatus(containerID string) (*runtimeapi.Contai ...@@ -336,7 +336,7 @@ func (ds *dockerService) ContainerStatus(containerID string) (*runtimeapi.Contai
return nil, err return nil, err
} }
// Parse the timstamps. // Parse the timestamps.
createdAt, startedAt, finishedAt, err := getContainerTimestamps(r) createdAt, startedAt, finishedAt, err := getContainerTimestamps(r)
if err != nil { if err != nil {
return nil, fmt.Errorf("failed to parse timestamp for container %q: %v", containerID, err) return nil, fmt.Errorf("failed to parse timestamp for container %q: %v", containerID, err)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment