Browse Source

docker: make sure to log the error when we fall through

pull/3621/head
Frank Schroeder 7 years ago
parent
commit
a1b47d99c1
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
  1. 2
      agent/checks/docker.go

2
agent/checks/docker.go

@ -164,7 +164,7 @@ func (c *DockerClient) StartExec(containerID, execID string) (*circbuf.Buffer, e
case code == 409:
return nil, fmt.Errorf("start exec failed since container %s is paused or stopped", containerID)
default:
return nil, fmt.Errorf("start exec failed for container %s with status %d: %s", containerID, code, b)
return nil, fmt.Errorf("start exec failed for container %s with status %d: body: %s err: %s", containerID, code, b, err)
}
}

Loading…
Cancel
Save