We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebbaa8a commit e30df48Copy full SHA for e30df48
routers/api/actions/runner/runner.go
@@ -246,7 +246,7 @@ func (s *Service) UpdateLog(
246
task, err := actions_model.GetTaskByID(ctx, req.Msg.TaskId)
247
if err != nil {
248
return nil, status.Errorf(codes.Internal, "get task: %v", err)
249
- } else if runner.RunnerID != task.RunnerID {
+ } else if runner.ID != task.RunnerID {
250
return nil, status.Errorf(codes.Internal, "invalid runner for task")
251
}
252
ack := task.LogLength
0 commit comments