FIX attachment_minio Cannot delete attachments.

This commit is contained in:
Jared Kipe
2019-07-07 06:37:17 -07:00
parent cb9d19cdd8
commit a79fbe854e
2 changed files with 6 additions and 3 deletions

View File

@@ -93,7 +93,7 @@ class MinioAttachment(models.Model):
# Cannot delete unparsable file
return True
bucket_name = s3uri.bucket()
if bucket_name == self._get_s3_bucket(client):
if bucket_name == self._get_minio_bucket(client):
try:
client.remove_object(bucket_name, s3uri.item())
except NoSuchKey: