Ticket #135 (new defect)
Opened 5 months ago
Exceptions in Pipeline contributors cause infinite nested-pipeline loops
| Reported by: | Andrew Bullock <trullock@…> | Owned by: | serialseb |
|---|---|---|---|
| Priority: | high | Milestone: | 2.0 Release Candidate |
| Component: | Core - Pipeline | Version: | Trunk - 2.0.4003.414 |
| Keywords: | Cc: | ||
| Time remaining: | 1d | Blocked By: | |
| Time spent: | 1d | Time planned: | 1d |
| Blocking: |
Description
repro:
public class LoopPipelineContributor? : IPipelineContributor {
public void Initialize(IPipeline pipelineNotification) {
pipelineNotification.Notify(execute).After<KnownStages?.IOperationResultInvo cation>();
} private PipelineContinuation? execute(ICommunicationContext arg) {
throw new NotImplementedException?();
}
}
Attachments
Note: See
TracTickets for help on using
tickets.
