job file path on remote machine
(jobId string, extension string)
| 484 | |
| 485 | // job file path on remote machine |
| 486 | func GetRemoteJobFilePath(jobId string, extension string) string { |
| 487 | jobDir := GetRemoteJobLogDir() |
| 488 | return filepath.Join(jobDir, fmt.Sprintf("%s.%s", jobId, extension)) |
| 489 | } |
| 490 | |
| 491 | // job file dir on remote machines |
| 492 | func GetRemoteJobLogDir() string { |
no test coverage detected