( ctx context.Context, store DeleteTaskMutationStore, record Task, dependencies []Dependency, runs []Run, )
| 2893 | } |
| 2894 | |
| 2895 | func (m *Service) canonicalTaskStatusWithStore( |
| 2896 | ctx context.Context, |
| 2897 | store DeleteTaskMutationStore, |
| 2898 | record Task, |
| 2899 | dependencies []Dependency, |
| 2900 | runs []Run, |
| 2901 | ) (Status, error) { |
| 2902 | return m.canonicalTaskStatusReadOnlyWithStore( |
| 2903 | ctx, |
| 2904 | store, |
| 2905 | record, |
| 2906 | dependencies, |
| 2907 | runs, |
| 2908 | make(map[string]struct{}, len(dependencies)+1), |
| 2909 | ) |
| 2910 | } |
| 2911 | |
| 2912 | func (m *Service) canonicalTaskStatusReadOnlyWithStore( |
| 2913 | ctx context.Context, |
no test coverage detected