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 893c97d commit 67a73ddCopy full SHA for 67a73dd
routers/web/shared/actions/runners.go
@@ -22,13 +22,13 @@ import (
22
func RunnersList(ctx *context.Context, tplName base.TplName, opts actions_model.FindRunnerOptions) {
23
count, err := actions_model.CountRunners(ctx, opts)
24
if err != nil {
25
- ctx.ServerError("AdminRunners", err)
+ ctx.ServerError("CountRunners", err)
26
return
27
}
28
29
runners, err := actions_model.FindRunners(ctx, opts)
30
31
+ ctx.ServerError("FindRunners", err)
32
33
34
if err := runners.LoadAttributes(ctx); err != nil {
0 commit comments