Skip to content
Snippets Groups Projects
Commit 8c69b688 authored by Agate's avatar Agate :speech_balloon:
Browse files

Merge branch 'fix-import-index-violation' into 'develop'

Skip importing files that cause index violations

See merge request funkwhale/funkwhale!1236
parents fdf76fb1 d4160f86
Branches
Tags
No related merge requests found
......@@ -17,6 +17,7 @@ from django.core.files import File
from django.core.management import call_command
from django.core.management.base import BaseCommand, CommandError
from django.db.models import Q
from django.db.utils import IntegrityError
from django.utils import timezone
from rest_framework import serializers
......@@ -832,6 +833,13 @@ def check_upload(stdout, upload):
except serializers.ValidationError as e:
stdout.write(" Invalid metadata: {}".format(e))
return
except IntegrityError:
stdout.write(
" Duplicate key violation for metadata. Skipping...\n{}".format(
upload.source
)
)
return
else:
upload.checksum = checksum
upload.save(update_fields=["checksum"])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment