-
Notifications
You must be signed in to change notification settings - Fork 557
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The S3 file like writer in Python is not completing correctly. #4120
Comments
Hi, would like to share more details about this? Did it raise an error? |
@Xuanwo The program ends without any exceptions.
Moreover, when the write method is called only once, not even a Multipart is created; it just writes to the memory. |
First, if the |
@Xuanwo |
Ok, I got it. It does a bug in our opendal binding. We missed to call close for the file internally. |
We can fix it by calling |
@Xuanwo I tried to fix it, but my autoformatter had some issues, leading to additional commits. |
Thanks! |
The code is as follows.
Created a Multipart, but the close method did not complete the Multipart.
The text was updated successfully, but these errors were encountered: