mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 20:36:07 +01:00 
			
		
		
		
	Fix typo "GetLatestRunnerToken" (#27680)
This commit is contained in:
		@@ -82,8 +82,8 @@ func NewRunnerToken(ctx context.Context, ownerID, repoID int64) (*ActionRunnerTo
 | 
				
			|||||||
	})
 | 
						})
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// GetLastestRunnerToken returns the latest runner token
 | 
					// GetLatestRunnerToken returns the latest runner token
 | 
				
			||||||
func GetLastestRunnerToken(ctx context.Context, ownerID, repoID int64) (*ActionRunnerToken, error) {
 | 
					func GetLatestRunnerToken(ctx context.Context, ownerID, repoID int64) (*ActionRunnerToken, error) {
 | 
				
			||||||
	var runnerToken ActionRunnerToken
 | 
						var runnerToken ActionRunnerToken
 | 
				
			||||||
	has, err := db.GetEngine(ctx).Where("owner_id=? AND repo_id=?", ownerID, repoID).
 | 
						has, err := db.GetEngine(ctx).Where("owner_id=? AND repo_id=?", ownerID, repoID).
 | 
				
			||||||
		OrderBy("id DESC").Get(&runnerToken)
 | 
							OrderBy("id DESC").Get(&runnerToken)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -41,7 +41,7 @@ func GenerateActionsRunnerToken(ctx *context.PrivateContext) {
 | 
				
			|||||||
		})
 | 
							})
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	token, err := actions_model.GetLastestRunnerToken(ctx, owner, repo)
 | 
						token, err := actions_model.GetLatestRunnerToken(ctx, owner, repo)
 | 
				
			||||||
	if errors.Is(err, util.ErrNotExist) || (token != nil && !token.IsActive) {
 | 
						if errors.Is(err, util.ErrNotExist) || (token != nil && !token.IsActive) {
 | 
				
			||||||
		token, err = actions_model.NewRunnerToken(ctx, owner, repo)
 | 
							token, err = actions_model.NewRunnerToken(ctx, owner, repo)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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
 | 
						// ownid=0,repo_id=0,means this token is used for global
 | 
				
			||||||
	var token *actions_model.ActionRunnerToken
 | 
						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) {
 | 
						if errors.Is(err, util.ErrNotExist) || (token != nil && !token.IsActive) {
 | 
				
			||||||
		token, err = actions_model.NewRunnerToken(ctx, opts.OwnerID, opts.RepoID)
 | 
							token, err = actions_model.NewRunnerToken(ctx, opts.OwnerID, opts.RepoID)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
@@ -43,7 +43,7 @@ func RunnersList(ctx *context.Context, opts actions_model.FindRunnerOptions) {
 | 
				
			|||||||
			return
 | 
								return
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	} else if err != nil {
 | 
						} else if err != nil {
 | 
				
			||||||
		ctx.ServerError("GetLastestRunnerToken", err)
 | 
							ctx.ServerError("GetLatestRunnerToken", err)
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user