MCPcopy Create free account
hub / github.com/compozy/agh / canonicalTaskStatusWithStore

Method canonicalTaskStatusWithStore

internal/task/manager.go:2895–2910  ·  view source on GitHub ↗
(
	ctx context.Context,
	store DeleteTaskMutationStore,
	record Task,
	dependencies []Dependency,
	runs []Run,
)

Source from the content-addressed store, hash-verified

2893}
2894
2895func (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
2912func (m *Service) canonicalTaskStatusReadOnlyWithStore(
2913 ctx context.Context,

Callers 2

canonicalTaskStatusMethod · 0.95

Tested by

no test coverage detected