From 0cf7c98b3439f7dd4c98988ae1e47ed60021ef4d Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Thu, 1 Aug 2024 17:52:51 +0100 Subject: [PATCH] Remove attribute Not required due to lack of catch. --- src/Polly.Core/Hedging/Controller/TaskExecution.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Polly.Core/Hedging/Controller/TaskExecution.cs b/src/Polly.Core/Hedging/Controller/TaskExecution.cs index fe45608153d..a87798351db 100644 --- a/src/Polly.Core/Hedging/Controller/TaskExecution.cs +++ b/src/Polly.Core/Hedging/Controller/TaskExecution.cs @@ -155,7 +155,7 @@ private HedgingActionGeneratorArguments CreateArguments>> primaryCallback, ResilienceContext primaryContext, TState state, - int attempt) => new(primaryContext, Context, attempt, [DebuggerDisableUserUnhandledExceptions] (context) => primaryCallback(context, state)); + int attempt) => new(primaryContext, Context, attempt, (context) => primaryCallback(context, state)); public async ValueTask ResetAsync() {