e.g. /jobs/ /in_progress/
(kind userconfig.Kind, apiName string)
| 93 | |
| 94 | // e.g. <cluster_uid>/jobs/<job_api_kind>/in_progress/<api_name> |
| 95 | func allInProgressForAPIKey(kind userconfig.Kind, apiName string) string { |
| 96 | return path.Join(allInProgressKey(kind), apiName) |
| 97 | } |
| 98 | |
| 99 | // e.g. <cluster_uid>/jobs/<job_api_kind>/in_progress/<api_name>/<job_id> |
| 100 | func inProgressKey(jobKey spec.JobKey) string { |
no test coverage detected