(ctx context.Context, projectID string, taskRunUID int64, t time.Time, replicaID string, e *storepb.TaskRunLog)
| 20 | } |
| 21 | |
| 22 | func (s *Store) CreateTaskRunLogS(ctx context.Context, projectID string, taskRunUID int64, t time.Time, replicaID string, e *storepb.TaskRunLog) { |
| 23 | if err := s.CreateTaskRunLog(ctx, projectID, taskRunUID, t, replicaID, e); err != nil { |
| 24 | slog.Error("failed to create task run log", log.BBError(err)) |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | func (s *Store) CreateTaskRunLog(ctx context.Context, projectID string, taskRunUID int64, t time.Time, replicaID string, e *storepb.TaskRunLog) error { |
| 29 | e.ReplicaId = replicaID |
no test coverage detected