Skip to content

Commit 95ebfe3

Browse files
authored
Merge pull request #3722 from manyfold3d/fix-model-deletion
Fix model deletion error
2 parents 88effb6 + cc3ff5c commit 95ebfe3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/models/model.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def delete_from_disk_and_destroy
8484
# This will go away later when we do proper file relationships rather than linking the tables directly
8585
model_files.update_all(presupported_version_id: nil) # rubocop:disable Rails/SkipsModelValidations
8686
# Trigger deletion for each file separately, to make sure cleanup happens
87-
model_files.each { |f| f.destroy }
87+
model_files.including_special.each { |f| f.destroy }
8888
# Remove tags first - sometimes this causes problems if we don't do it beforehand
8989
update!(tags: [])
9090
# Delete directory corresponding to model

spec/models/model_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@
404404
it "calls destroy on files" do # rubocop:todo RSpec/ExampleLength
405405
file = create(:model_file, model: model, filename: "part_1.3mf", digest: "1234")
406406
allow(file).to receive(:destroy)
407-
mock = [file]
407+
mock = double(including_special: [file]) # rubocop:disable RSpec/VerifiedDoubles
408408
without_partial_double_verification do
409409
allow(mock).to receive(:update_all).and_return(true)
410410
end

0 commit comments

Comments
 (0)