Fix a few minor warnings

This commit is contained in:
fox.cpp 2021-09-22 23:32:30 +03:00
parent 31265e3371
commit a1fc99d08c
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
4 changed files with 10 additions and 5 deletions

View file

@ -17,4 +17,4 @@ linters:
- whitespace - whitespace
- nakedret - nakedret
- dogsled - dogsled
- scopelint - exportloopref

View file

@ -79,7 +79,6 @@ func (e Endpoint) Address() string {
return e.Path return e.Path
} }
return net.JoinHostPort(e.Host, e.Port) return net.JoinHostPort(e.Host, e.Port)
} }
func (e Endpoint) IsTLS() bool { func (e Endpoint) IsTLS() bool {

View file

@ -106,7 +106,9 @@ func (b *s3blob) Write(p []byte) (n int, err error) {
func (b *s3blob) Close() error { func (b *s3blob) Close() error {
if !b.didSync { 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 return nil
} }
@ -127,7 +129,9 @@ func (s *Store) Create(ctx context.Context, key string, blobSize int64) (module.
PartSize: partSize, PartSize: partSize,
}) })
if err != nil { 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 errCh <- err
}() }()

View file

@ -52,7 +52,9 @@ func TestStore(t *testing.T, newStore func() module.BlobStore, cleanStore func(m
} }
cleanBackend := func(bi backendtests.Backend) { cleanBackend := func(bi backendtests.Backend) {
b := bi.(testBack) b := bi.(testBack)
b.Backend.(*imapsql.Backend).Close() if err := b.Backend.(*imapsql.Backend).Close(); err != nil {
panic(err)
}
cleanStore(b.ExtStore) cleanStore(b.ExtStore)
} }