Skip to content

Commit ca155ea

Browse files
jan-auerBYK
authored andcommitted
fix(assemble): Avoid increasing backlogs in assemble (#12923)
1 parent 896d4c3 commit ca155ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/api/endpoints/debug_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def post(self, request, project):
337337

338338
# We don't have a state yet, this means we can now start
339339
# an assemble job in the background.
340-
set_assemble_status(project, checksum, state)
340+
set_assemble_status(project, checksum, ChunkFileState.ASSEMBLING)
341341
assemble_dif.apply_async(
342342
kwargs={
343343
'project_id': project.id,

0 commit comments

Comments
 (0)