Skip to content

Commit

Permalink
return child message in executor on error (#3412)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwm5945 authored Jul 17, 2021
1 parent 94ee6eb commit a40e5cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/predictor/predictor_process.go
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ func (p *PredictorProcess) Predict(node *v1.PredictiveUnit, msg payload.SeldonPa
}
cmsg, err := p.predictChildren(node, tmsg)
if err != nil {
return tmsg, err
return cmsg, err
}
response, err := p.transformOutput(node, cmsg)
// Log Response
Expand Down

0 comments on commit a40e5cb

Please sign in to comment.