diff --git a/.golangci.yml b/.golangci.yml index b29e921..47b5bb3 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -17,4 +17,4 @@ linters: - whitespace - nakedret - dogsled - - scopelint + - exportloopref diff --git a/framework/config/endpoint.go b/framework/config/endpoint.go index 649a117..210d57b 100644 --- a/framework/config/endpoint.go +++ b/framework/config/endpoint.go @@ -79,7 +79,6 @@ func (e Endpoint) Address() string { return e.Path } return net.JoinHostPort(e.Host, e.Port) - } func (e Endpoint) IsTLS() bool { diff --git a/internal/storage/blob/s3/s3.go b/internal/storage/blob/s3/s3.go index 87cf859..719ede6 100644 --- a/internal/storage/blob/s3/s3.go +++ b/internal/storage/blob/s3/s3.go @@ -106,7 +106,9 @@ func (b *s3blob) Write(p []byte) (n int, err error) { func (b *s3blob) Close() error { if !b.didSync { - b.pw.CloseWithError(fmt.Errorf("storage.blob.s3: blob closed without Sync")) + if err := b.pw.CloseWithError(fmt.Errorf("storage.blob.s3: blob closed without Sync")); err != nil { + panic(err) + } } return nil } @@ -127,7 +129,9 @@ func (s *Store) Create(ctx context.Context, key string, blobSize int64) (module. PartSize: partSize, }) if err != nil { - pr.CloseWithError(fmt.Errorf("s3 PutObject: %w", err)) + if err := pr.CloseWithError(fmt.Errorf("s3 PutObject: %w", err)); err != nil { + panic(err) + } } errCh <- err }() diff --git a/internal/storage/blob/test_blob.go b/internal/storage/blob/test_blob.go index a3a3fae..eead14d 100644 --- a/internal/storage/blob/test_blob.go +++ b/internal/storage/blob/test_blob.go @@ -52,7 +52,9 @@ func TestStore(t *testing.T, newStore func() module.BlobStore, cleanStore func(m } cleanBackend := func(bi backendtests.Backend) { b := bi.(testBack) - b.Backend.(*imapsql.Backend).Close() + if err := b.Backend.(*imapsql.Backend).Close(); err != nil { + panic(err) + } cleanStore(b.ExtStore) }