Merge pull request #2408 from lucas-clemente/update-golang-ci

update GolangCI-Lint to v1.23.8
This commit is contained in:
Marten Seemann 2020-03-10 16:53:41 +07:00 committed by GitHub
commit 2cee7dd88a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 9 deletions

View file

@ -54,6 +54,8 @@ func (s *stream) Write(b []byte) (int, error) {
var _ = Describe("Crypto Setup TLS", func() {
var clientConf, serverConf *tls.Config
// unparam incorrectly complains that the first argument is never used.
//nolint:unparam
initStreams := func() (chan chunk, *stream /* initial */, *stream /* handshake */) {
chunkChan := make(chan chunk, 100)
initialStream := newStream(chunkChan, protocol.EncryptionInitial)