Skip to content

Commit ce1b085

Browse files
authored
fix(native): Pass scope correctly to DIF assemble (#13480)
1 parent 209e42f commit ce1b085

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/tasks/assemble.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def assemble_dif(project_id, name, checksum, chunks, **kwargs):
9494
set_assemble_status(AssembleTask.DIF, project.id, checksum, ChunkFileState.ASSEMBLING)
9595

9696
# Assemble the chunks into a temporary file
97-
rv = assemble_file(AssembleTask.DIF, project.id, name, checksum, chunks,
97+
rv = assemble_file(AssembleTask.DIF, project, name, checksum, chunks,
9898
file_type='project.dif')
9999

100100
# If not file has been created this means that the file failed to

0 commit comments

Comments
 (0)