Skip to content

Commit

Permalink
Remove storages
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvarner committed Mar 14, 2024
1 parent b8ba1f9 commit 2633282
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions readux_ingest_ecds/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ class Local(IngestAbstractModel):
bundle = models.FileField(
null=True,
blank=True,
storage=TmpStorage,
upload_to=local_tmp
)

Expand Down Expand Up @@ -226,7 +225,7 @@ class Bulk(models.Model):
null=True,
related_name='ecds_bulk_ingest_created_locals'
)
volume_files = models.FileField(blank=False, null=True, upload_to=bulk_path, storage=TmpStorage)
volume_files = models.FileField(blank=False, null=True, upload_to=bulk_path)

def upload_files(self, files):
for uploaded_file in files:
Expand Down

0 comments on commit 2633282

Please sign in to comment.