Skip to content

Commit 6aaf990

Browse files
committed
fix(asset)!: clear older DEBUG related project assets
1 parent 7dff6a5 commit 6aaf990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project_types/base/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def process_project(self) -> bool:
183183
# We need to be careful not to delete assets that are currently used
184184
ProjectAsset.usable_objects().filter(
185185
project=self.project.pk,
186-
type__in=[ProjectAsset.Type.OUTPUT, ProjectAsset.Type.STATS],
186+
type__in=[ProjectAsset.Type.OUTPUT, ProjectAsset.Type.STATS, ProjectAsset.Type.DEBUG],
187187
).update(marked_as_deleted=True)
188188

189189
try:

0 commit comments

Comments
 (0)