mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
storage/blob/s3: Add missing didSync check
This commit is contained in:
parent
61e6e73910
commit
ff584bb5a3
1 changed files with 5 additions and 1 deletions
|
@ -89,10 +89,14 @@ type s3blob struct {
|
|||
func (b *s3blob) Sync() error {
|
||||
// We do this in Sync instead of Close because
|
||||
// backend may not actually check the error of Close.
|
||||
|
||||
// The problematic restriction is that Sync can now be called
|
||||
// only once.
|
||||
if b.didSync {
|
||||
panic("storage.blob.s3: Sync called twice for a blob object")
|
||||
}
|
||||
|
||||
b.pw.Close()
|
||||
b.didSync = true
|
||||
return <-b.errCh
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue