Pipeline.get return only one result from its output_stages . I can not catch the design, or a bug ?
def get(self, timeout=None):
"""Return result from the pipeline."""
result = None
for stage in self._output_stages:
result = stage.get(timeout)
return result