(_ context.Context, run Run)
| 1049 | } |
| 1050 | |
| 1051 | func (s *inMemoryManagerStore) UpdateTaskRun(_ context.Context, run Run) error { |
| 1052 | s.runs[run.ID] = cloneTaskRun(run) |
| 1053 | return nil |
| 1054 | } |
| 1055 | |
| 1056 | func (s *inMemoryManagerStore) GetTaskRun(_ context.Context, id string) (Run, error) { |
| 1057 | run, ok := s.runs[strings.TrimSpace(id)] |
nothing calls this directly
no test coverage detected