1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-11-23 21:44:44 +02:00

Spellcheck "server/*" (#3753)

Co-authored-by: Anbraten <6918444+anbraten@users.noreply.github.com>
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
This commit is contained in:
6543
2024-06-04 08:30:54 +02:00
committed by GitHub
parent 9b859b3c9e
commit 4ec046e415
34 changed files with 220 additions and 196 deletions

View File

@@ -260,7 +260,7 @@ func (c *client) Dir(ctx context.Context, u *model.User, r *model.Repo, b *model
}
fc := make(chan *forge_types.FileMeta)
errc := make(chan error)
errChan := make(chan error)
for _, file := range data {
go func(path string) {
@@ -269,7 +269,7 @@ func (c *client) Dir(ctx context.Context, u *model.User, r *model.Repo, b *model
if errors.Is(err, &forge_types.ErrConfigNotFound{}) {
err = fmt.Errorf("git tree reported existence of file but we got: %s", err.Error())
}
errc <- err
errChan <- err
} else {
fc <- &forge_types.FileMeta{
Name: path,
@@ -283,7 +283,7 @@ func (c *client) Dir(ctx context.Context, u *model.User, r *model.Repo, b *model
for i := 0; i < len(data); i++ {
select {
case err := <-errc:
case err := <-errChan:
return nil, err
case fileMeta := <-fc:
files = append(files, fileMeta)
@@ -291,7 +291,7 @@ func (c *client) Dir(ctx context.Context, u *model.User, r *model.Repo, b *model
}
close(fc)
close(errc)
close(errChan)
return files, nil
}
@@ -474,8 +474,8 @@ func matchingEmail(emails []*github.UserEmail, rawURL string) *github.UserEmail
}
// matchingHooks returns matching hook.
func matchingHooks(hooks []*github.Hook, rawurl string) *github.Hook {
link, err := url.Parse(rawurl)
func matchingHooks(hooks []*github.Hook, rawURL string) *github.Hook {
link, err := url.Parse(rawURL)
if err != nil {
return nil
}