| 238 | |
| 239 | |
| 240 | Try<list<string>> getExecutorPaths( |
| 241 | const string& rootDir, |
| 242 | const SlaveID& slaveId, |
| 243 | const FrameworkID& frameworkId) |
| 244 | { |
| 245 | return fs::list(path::join( |
| 246 | getFrameworkPath(rootDir, slaveId, frameworkId), |
| 247 | EXECUTORS_DIR, |
| 248 | "*")); |
| 249 | } |
| 250 | |
| 251 | |
| 252 | string getExecutorPath( |
no test coverage detected