Fix bug resulting in SyncParallelPipeline breaking the Whisker debugger

This commit is contained in:
Paul Kompfner
2026-03-13 12:29:32 -04:00
committed by Mark Backman
parent 167f008e47
commit 12cb9599ad

View File

@@ -184,7 +184,7 @@ class SyncParallelPipeline(BasePipeline):
Returns:
The list of entry processors.
"""
return self._sources
return [s["processor"] for s in self._sources]
def processors_with_metrics(self) -> List[FrameProcessor]:
"""Collect processors that can generate metrics from all parallel pipelines.