We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed4d762 commit 11a478eCopy full SHA for 11a478e
src/clusterfuzz/_internal/base/tasks/__init__.py
@@ -317,6 +317,11 @@ def get_preprocess_task():
317
318
def tworker_get_task():
319
assert environment.is_tworker()
320
+ # TODO(metzman): Pulling tasks is relatively expensive compared to
321
+ # preprocessing. It's too expensive to pull twice (once from the postproces
322
+ # queue that is probably empty) to do a single preprocess. Investigate
323
+ # combining preprocess and postprocess queues and allowing pulling of
324
+ # multiple messages.
325
return get_preprocess_task()
326
327
0 commit comments