mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 13:49:10 +01:00
Fix incorrect server error content in RunnersList (#24118)
This commit is contained in:
parent
5f4cd715ab
commit
5768bafeb2
1 changed files with 2 additions and 2 deletions
|
@ -22,13 +22,13 @@ import (
|
||||||
func RunnersList(ctx *context.Context, tplName base.TplName, opts actions_model.FindRunnerOptions) {
|
func RunnersList(ctx *context.Context, tplName base.TplName, opts actions_model.FindRunnerOptions) {
|
||||||
count, err := actions_model.CountRunners(ctx, opts)
|
count, err := actions_model.CountRunners(ctx, opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("AdminRunners", err)
|
ctx.ServerError("CountRunners", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
runners, err := actions_model.FindRunners(ctx, opts)
|
runners, err := actions_model.FindRunners(ctx, opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("AdminRunners", err)
|
ctx.ServerError("FindRunners", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if err := runners.LoadAttributes(ctx); err != nil {
|
if err := runners.LoadAttributes(ctx); err != nil {
|
||||||
|
|
Loading…
Reference in a new issue