Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
use right error variable
  • Loading branch information
camdencheek committed Jan 19, 2024
commit f859a1775f10f864a8d576d407e30be08d0b8c37
2 changes: 1 addition & 1 deletion pool/error_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (p *ErrorPool) Wait() error {
} else if p.onlyFirstError {
return errs[0]
} else {
return errors.Join(p.errs...)
return errors.Join(errs...)
}
}

Expand Down