1
0
mirror of https://gitea.com/gitea/act_runner.git synced 2025-04-25 08:18:45 +02:00

Fix panic when response is nil ()

Reviewed-on: https://gitea.com/gitea/act_runner/pulls/105
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Jason Song <i@wolfogre.com>
Co-committed-by: Jason Song <i@wolfogre.com>
This commit is contained in:
Jason Song 2023-04-06 21:51:46 +08:00 committed by Lunny Xiao
parent d139faa40c
commit 9c6499ec08

@ -74,7 +74,7 @@ func (p *Poller) fetchTask(ctx context.Context) (*runnerv1.Task, bool) {
return nil, false return nil, false
} }
if resp.Msg.Task == nil { if resp == nil || resp.Msg == nil || resp.Msg.Task == nil {
return nil, false return nil, false
} }
return resp.Msg.Task, true return resp.Msg.Task, true