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 fdabe1172b
commit 534a935433
1 changed files with 0 additions and 2 deletions

View File

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