diff options
author | Jason Song <i@wolfogre.com> | 2023-10-18 23:52:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-18 15:52:44 +0000 |
commit | 0a2b93d411e8b5685a584be069da07dfc163f03c (patch) | |
tree | 32165303639418c13628bc1607354c307b2b5baf /routers/web/shared | |
parent | 0b654fa8dc132cce191f43fb9bdf4d5864e11b7c (diff) | |
download | gitea-0a2b93d411e8b5685a584be069da07dfc163f03c.tar.gz gitea-0a2b93d411e8b5685a584be069da07dfc163f03c.zip |
Fix typo "GetLatestRunnerToken" (#27680)
Diffstat (limited to 'routers/web/shared')
-rw-r--r-- | routers/web/shared/actions/runners.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/web/shared/actions/runners.go b/routers/web/shared/actions/runners.go index cd60e9cbee..1da4ddf14f 100644 --- a/routers/web/shared/actions/runners.go +++ b/routers/web/shared/actions/runners.go @@ -35,7 +35,7 @@ func RunnersList(ctx *context.Context, opts actions_model.FindRunnerOptions) { // ownid=0,repo_id=0,means this token is used for global var token *actions_model.ActionRunnerToken - token, err = actions_model.GetLastestRunnerToken(ctx, opts.OwnerID, opts.RepoID) + token, err = actions_model.GetLatestRunnerToken(ctx, opts.OwnerID, opts.RepoID) if errors.Is(err, util.ErrNotExist) || (token != nil && !token.IsActive) { token, err = actions_model.NewRunnerToken(ctx, opts.OwnerID, opts.RepoID) if err != nil { @@ -43,7 +43,7 @@ func RunnersList(ctx *context.Context, opts actions_model.FindRunnerOptions) { return } } else if err != nil { - ctx.ServerError("GetLastestRunnerToken", err) + ctx.ServerError("GetLatestRunnerToken", err) return } |