| 335 | |
| 336 | |
| 337 | string getExecutorSentinelPath( |
| 338 | const string& rootDir, |
| 339 | const SlaveID& slaveId, |
| 340 | const FrameworkID& frameworkId, |
| 341 | const ExecutorID& executorId, |
| 342 | const ContainerID& containerId) |
| 343 | { |
| 344 | return path::join( |
| 345 | getExecutorRunPath( |
| 346 | rootDir, |
| 347 | slaveId, |
| 348 | frameworkId, |
| 349 | executorId, |
| 350 | containerId), |
| 351 | EXECUTOR_SENTINEL_FILE); |
| 352 | } |
| 353 | |
| 354 | |
| 355 | string getExecutorVirtualPath( |
no test coverage detected