(
sandbox: &DriverSandbox,
config: &DockerDriverRuntimeConfig,
)
| 2066 | } |
| 2067 | |
| 2068 | fn sandbox_token_host_path( |
| 2069 | sandbox: &DriverSandbox, |
| 2070 | config: &DockerDriverRuntimeConfig, |
| 2071 | ) -> Result<PathBuf, Status> { |
| 2072 | sandbox_token_host_path_by_id(&sandbox.id, config) |
| 2073 | } |
| 2074 | |
| 2075 | fn sandbox_token_host_path_by_id( |
| 2076 | sandbox_id: &str, |
no test coverage detected