mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
Fix a few minor warnings
This commit is contained in:
parent
31265e3371
commit
a1fc99d08c
4 changed files with 10 additions and 5 deletions
|
@ -17,4 +17,4 @@ linters:
|
||||||
- whitespace
|
- whitespace
|
||||||
- nakedret
|
- nakedret
|
||||||
- dogsled
|
- dogsled
|
||||||
- scopelint
|
- exportloopref
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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
|
||||||
}()
|
}()
|
||||||
|
|
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue