We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I had to make the following changes to the minio.py data_backend to match up with changes in Minio API 6 => 7
rm_many()
try:
for del_err in self.client.remove_objects(self.bucket_name, uids): try:
delete_object_list = []
for delete_uid in uids:
delete_object_list.append(DeleteObject(delete_uid))
for del_err in self.client.remove_objects(self.bucket_name, delete_object_list):
The text was updated successfully, but these errors were encountered:
I forgot the minio.error changes. Removed BucketAlreadyOwnedByYou and BucketAlreadyExists from the minio.error import line.
Sorry, something went wrong.
i have an updated version of the the minio.py file that incorporates these changes and it seems to be working fine with no errors.
No branches or pull requests
I had to make the following changes to the minio.py data_backend to match up with changes in Minio API 6 => 7
rm_many()
The text was updated successfully, but these errors were encountered: