Skip to content

Commit

Permalink
chore: LEAP-1299: Remove fflag_fix_back_lsdv_4929_limit_exports_10042… (
Browse files Browse the repository at this point in the history
#7136)

Co-authored-by: triklozoid <[email protected]>
  • Loading branch information
triklozoid and triklozoid authored Feb 28, 2025
1 parent 064b7be commit f70c34e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion label_studio/core/feature_flags/stale_feature_flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
'fflag_fix_back_lsdv_4648_annotator_filter_29052023_short': True,
'ff_back_dev_4664_remove_storage_file_on_export_delete_29032023_short': False,
'fflag_feat_front_lops_86_datasets_storage_edit_short': False,
'fflag_fix_back_lsdv_4929_limit_exports_10042023_short': True,
'fflag_feat_front_lsdv_4620_richtext_opimization_060423_short': True,
'fflag_feat_front_dev_3873_labeling_ui_improvements_short': True,
'fflag_feat_back_dev_3756_queue_enrollment_min_short': False,
Expand Down
5 changes: 1 addition & 4 deletions label_studio/data_export/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,7 @@ def get_queryset(self):
def filter_queryset(self, queryset):
queryset = super().filter_queryset(queryset)

if flag_set('fflag_fix_back_lsdv_4929_limit_exports_10042023_short', user='auto'):
return queryset.order_by('-created_at')[:100]
else:
return queryset
return queryset.order_by('-created_at')[:100]


@method_decorator(
Expand Down

0 comments on commit f70c34e

Please sign in to comment.