Merge pull request #1703 from aibaars/gcs-fix

GCS: FileWriter.Size: include number of buffered bytes if the FileWriter is not closed
This commit is contained in:
Richard Scothern 2016-05-05 12:09:13 -07:00
commit 1e0f3b7b64

View file

@ -493,6 +493,9 @@ func (w *writer) Write(p []byte) (int, error) {
// Size returns the number of bytes written to this FileWriter.
func (w *writer) Size() int64 {
if !w.closed {
return w.size + int64(w.buffSize)
}
return w.size
}