Max Vorchakov
Max Vorchakov
For example: ``` var builder = new PipelineBuilder(_pipelineStepFactory, context) .If(SampleParallelStep1ExecutionAllowed, b => b .Add() .Add() .Add() .Add()) // throw .OnError(PipelineStepErrorHandling.Suppress) .Add(); ``` Errors thrown inside nested pipelines are not handled...
Currently PipelineStepErrorHandling.Suppress just suppress error and stop pipeline execution. New suppress behavior should be changed to suppress, log errors, and continue pipeline execution.
**Low priority** It might be helpful to have some persistence for pipelines. On error, all pipeline and context should be serialized and stored, for example in Redis (IMO Redis should...
https://github.com/App-vNext/Polly Currently `OnError` supports only one retry policy. We should add the ability to use Polly on error handling
**Motivation:** Sometimes it is useful to have some events that are raised by the pipeline; for example, it can be useful to track how much time it took to finish...