| 302 | |
| 303 | |
| 304 | string getExecutorGeneratedForCommandTaskPath( |
| 305 | const string& rootDir, |
| 306 | const SlaveID& slaveId, |
| 307 | const FrameworkID& frameworkId, |
| 308 | const ExecutorID& executorId) |
| 309 | { |
| 310 | constexpr char EXECUTOR_GENERATED_FOR_COMMAND_TASK_PATH[] = |
| 311 | "executor_generated_for_command_task"; |
| 312 | |
| 313 | return path::join( |
| 314 | getExecutorPath(rootDir, slaveId, frameworkId, executorId), |
| 315 | EXECUTOR_GENERATED_FOR_COMMAND_TASK_PATH); |
| 316 | } |
| 317 | |
| 318 | |
| 319 | string getExecutorHttpMarkerPath( |
no test coverage detected