remove explicit fclose from S3->writeStream

streams get closed automatically when dropped, and in some cases the stream seems to be already closed by the S3 library, in which case trying to close it again will raise an error

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2021-03-11 18:05:04 +01:00 committed by backportbot[bot]
parent 709788e08f
commit 68fb72b028
1 changed files with 0 additions and 2 deletions

View File

@ -103,8 +103,6 @@ trait S3ObjectTrait {
throw $e;
}
}
fclose($countStream);
}
/**