Skip to content

Commit

Permalink
Fix order of task skipping if no output
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman committed Jan 18, 2024
1 parent 907ab95 commit 038efda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clusterfuzz/_internal/bot/tasks/task_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,10 +316,10 @@ def preprocess_utasks_and_queue_ttasks(tasks: List[Optional[Task]]):
task.name, task.argument, task.job, queue=task.queue_for_platform)
logs.log(f'UTask {task.name} not remote.')
continue
_preprocess(task)
if task.uworker_input is None:
logs.log('No uworker_input.')
continue
_preprocess(task)
yield task


Expand Down

0 comments on commit 038efda

Please sign in to comment.