| 71 | } |
| 72 | |
| 73 | type dockerV20Client struct { |
| 74 | config config.DockerConfig |
| 75 | dockerClient *client.Client |
| 76 | logger log.Logger |
| 77 | |
| 78 | // backendFailuresMetric counts the failed requests to the backend. |
| 79 | backendFailuresMetric metrics.SimpleCounter |
| 80 | // backendRequestsMetric counts the requests to the backend. |
| 81 | backendRequestsMetric metrics.SimpleCounter |
| 82 | } |
| 83 | |
| 84 | func (d *dockerV20Client) getImageName() string { |
| 85 | return d.config.Execution.DockerLaunchConfig.ContainerConfig.Image |
nothing calls this directly
no outgoing calls
no test coverage detected