(_ context.Context, run Run)
| 1044 | } |
| 1045 | |
| 1046 | func (s *inMemoryManagerStore) CreateTaskRun(_ context.Context, run Run) error { |
| 1047 | s.runs[run.ID] = cloneTaskRun(run) |
| 1048 | return nil |
| 1049 | } |
| 1050 | |
| 1051 | func (s *inMemoryManagerStore) UpdateTaskRun(_ context.Context, run Run) error { |
| 1052 | s.runs[run.ID] = cloneTaskRun(run) |
no test coverage detected