Skip to content

Commit 038efda

Browse files
Fix order of task skipping if no output
1 parent 907ab95 commit 038efda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clusterfuzz/_internal/bot/tasks/task_creation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,10 +316,10 @@ def preprocess_utasks_and_queue_ttasks(tasks: List[Optional[Task]]):
316316
task.name, task.argument, task.job, queue=task.queue_for_platform)
317317
logs.log(f'UTask {task.name} not remote.')
318318
continue
319+
_preprocess(task)
319320
if task.uworker_input is None:
320321
logs.log('No uworker_input.')
321322
continue
322-
_preprocess(task)
323323
yield task
324324

325325

0 commit comments

Comments
 (0)