Skip to content

Commit

Permalink
Add PipelineTemporarilyUnavailableException handling to `PipelineRe…
Browse files Browse the repository at this point in the history
…sultService`. pt.2
  • Loading branch information
drasmart committed Oct 16, 2024
1 parent 6bdb8a5 commit 0ec1f5b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ public void Process(HttpContext context)
// Store the FlowData in the HttpContext
context.Items.Add(Constants.HTTPCONTEXT_FLOWDATA, flowData);

// Extract the required pieces of evidence from the request
_evidenceService.AddEvidenceFromRequest(flowData, context.Request);

try
{
// Extract the required pieces of evidence from the request
_evidenceService.AddEvidenceFromRequest(flowData, context.Request);

// Start processing the data
flowData.Process();
}
Expand Down

0 comments on commit 0ec1f5b

Please sign in to comment.