Skip to content

Commit

Permalink
debugging logic
Browse files Browse the repository at this point in the history
  • Loading branch information
helrond committed Aug 26, 2019
1 parent df6c9a9 commit 6901694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aurora/bag_transfer/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def update_dashboard_data(sender, instance, **kwargs):
machine_file_upload_time__month=current.month).values_list('machine_file_size', flat=True)))/1000000000
data.save()
current += relativedelta(months=1)
elif instance.process_status >= sender.VALIDATED:
if instance.process_status >= sender.VALIDATED:
for organization in Organization.objects.all():
for label in set(BagInfoMetadata.objects.all().values_list('record_type', flat=True)):
data = DashboardRecordTypeData.objects.get_or_create(
Expand Down

0 comments on commit 6901694

Please sign in to comment.