| 457 | |
| 458 | |
| 459 | string getTaskInfoPath( |
| 460 | const string& rootDir, |
| 461 | const SlaveID& slaveId, |
| 462 | const FrameworkID& frameworkId, |
| 463 | const ExecutorID& executorId, |
| 464 | const ContainerID& containerId, |
| 465 | const TaskID& taskId) |
| 466 | { |
| 467 | return path::join( |
| 468 | getTaskPath( |
| 469 | rootDir, |
| 470 | slaveId, |
| 471 | frameworkId, |
| 472 | executorId, |
| 473 | containerId, |
| 474 | taskId), |
| 475 | TASK_INFO_FILE); |
| 476 | } |
| 477 | |
| 478 | |
| 479 | string getTaskUpdatesPath( |
no test coverage detected