We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64604d8 commit 5928de2Copy full SHA for 5928de2
apps/worker/tasks/upload_finisher.py
@@ -294,7 +294,8 @@ def run_impl(
294
# Only skip if ALL uploads exist in DB and ALL are in final states
295
if len(uploads_in_db) == len(upload_ids):
296
all_already_processed = all(
297
- upload.state in ("merged", "processed", "error") for upload in uploads_in_db
+ upload.state in ("merged", "processed", "error")
298
+ for upload in uploads_in_db
299
)
300
if all_already_processed:
301
log.info(
0 commit comments