( ctx context.Context, record Task, dependencies []Dependency, runs []Run, )
| 2884 | } |
| 2885 | |
| 2886 | func (m *Service) canonicalTaskStatus( |
| 2887 | ctx context.Context, |
| 2888 | record Task, |
| 2889 | dependencies []Dependency, |
| 2890 | runs []Run, |
| 2891 | ) (Status, error) { |
| 2892 | return m.canonicalTaskStatusWithStore(ctx, m.store, record, dependencies, runs) |
| 2893 | } |
| 2894 | |
| 2895 | func (m *Service) canonicalTaskStatusWithStore( |
| 2896 | ctx context.Context, |
no test coverage detected