storage/blob/s3: Add missing didSync check

This commit is contained in:
fox.cpp 2021-08-09 13:02:21 +03:00
parent 61e6e73910
commit ff584bb5a3
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -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
}