| 317 | |
| 318 | |
| 319 | string getExecutorHttpMarkerPath( |
| 320 | const string& rootDir, |
| 321 | const SlaveID& slaveId, |
| 322 | const FrameworkID& frameworkId, |
| 323 | const ExecutorID& executorId, |
| 324 | const ContainerID& containerId) |
| 325 | { |
| 326 | return path::join( |
| 327 | getExecutorRunPath( |
| 328 | rootDir, |
| 329 | slaveId, |
| 330 | frameworkId, |
| 331 | executorId, |
| 332 | containerId), |
| 333 | HTTP_MARKER_FILE); |
| 334 | } |
| 335 | |
| 336 | |
| 337 | string getExecutorSentinelPath( |
no test coverage detected