You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kill Overview during cancel, aftergrouped_file_uploads have been deleted for a file group, but before the file_group has been deleted.
Restart Overview
Expected results: Overview finishes cleanup upon restarting (or the deletion from grouped_file_uploads was in a transaction, so it gets undone and Overview starts where it left off next time)
Actual results: Overview leaves the file_group alone -- it's a job that stays around forever.
Steps to reproduce:
grouped_file_uploads
have been deleted for a file group, but before thefile_group
has been deleted.Expected results: Overview finishes cleanup upon restarting (or the deletion from
grouped_file_uploads
was in a transaction, so it gets undone and Overview starts where it left off next time)Actual results: Overview leaves the
file_group
alone -- it's a job that stays around forever.Workaround:
SELECT * FROM file_group WHERE id = XXXXX
SELECT COUNT(*) FROM grouped_file_upload WHERE file_group_id = XXXXX
SELECT *
toDELETE FROM
in the query from step 3The text was updated successfully, but these errors were encountered: