(ctx context.Context, run Run)
| 182 | } |
| 183 | |
| 184 | func (s *contextSensitiveRunStore) UpdateTaskRun(ctx context.Context, run Run) error { |
| 185 | if ctx != nil && ctx.Err() != nil { |
| 186 | return ctx.Err() |
| 187 | } |
| 188 | return s.inMemoryManagerStore.UpdateTaskRun(ctx, run) |
| 189 | } |
| 190 | |
| 191 | func (o *recordingTaskEventObserver) OnTaskEvent(_ context.Context, record EventRecord) { |
| 192 | o.records = append(o.records, record) |
nothing calls this directly
no test coverage detected