| 263 | |
| 264 | |
| 265 | string getExecutorInfoPath( |
| 266 | const string& rootDir, |
| 267 | const SlaveID& slaveId, |
| 268 | const FrameworkID& frameworkId, |
| 269 | const ExecutorID& executorId) |
| 270 | { |
| 271 | return path::join( |
| 272 | getExecutorPath(rootDir, slaveId, frameworkId, executorId), |
| 273 | EXECUTOR_INFO_FILE); |
| 274 | } |
| 275 | |
| 276 | |
| 277 | Try<list<string>> getExecutorRunPaths( |
no test coverage detected