From 17b90ef2d7929f97c14b6109fa5f1ec2dcd1074a Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Tue, 4 Jul 2023 17:14:25 -0500 Subject: [PATCH] use correct pipeline output --- api/onnx_web/chain/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/onnx_web/chain/base.py b/api/onnx_web/chain/base.py index c51a06cc..0e5acfa1 100644 --- a/api/onnx_web/chain/base.py +++ b/api/onnx_web/chain/base.py @@ -205,6 +205,6 @@ class ChainPipeline: logger.info( "finished pipeline in %s with %s results", duration, - len(stage_outputs), + len(stage_sources), ) - return stage_outputs + return stage_sources