Polly Retry 总是抛出 System.AggregateException 而不是自定义异常
Polly Retry always throws System.AggregateException instead of custom exception
正如标题所说,我使用Polly创建了一个重试机制。问题是我总是得到 System.AggregateException 而不是我自己的自定义异常。我会在这里添加代码。
这是我创建的 polly static class:
public static class PollyExtension
{
public static Task<T> RetryRequestWithPolicyAsync<T,T1>(
Func<Task<T>> customAction,
int retryCount,
TimeSpan pauseSecondsBetweenFailures) where T1 : Exception
{
return
Policy
.Handle<T1>()
.WaitAndRetryAsync(retryCount, i => pauseSecondsBetweenFailures).ExecuteAsync(() => customAction?.Invoke());
}
}
这是重试 polly 的实际调用:
var result= await PollyExtension.RetryRequestWithPolicyAsync<int, CustomException>( () =>
{
if (1 + 1 == 2)
{
throw new MyException("test");
}
else
{
throw new CustomException("test");
}
},
1,
TimeSpan.FromSeconds(1));
我的期望是,如果我抛出 MyException,polly 也会将 MyException 抛给调用方方法。相反,抛出的异常是 System.AggregateException.
我在这里做错了什么?谢谢
编辑 1:经过更多调试后,AggregateException 似乎具有内部异常 MyException。这是故意的行为还是我做错了什么?
在您的 ExecuteAsync
电话中,您 没有在等待 代表。
await 关键字将从 AggregateException
.
中解包您的自定义异常
首选方式:
.ExecuteAsync(async () => await customAction?.Invoke());
正如标题所说,我使用Polly创建了一个重试机制。问题是我总是得到 System.AggregateException 而不是我自己的自定义异常。我会在这里添加代码。
这是我创建的 polly static class:
public static class PollyExtension
{
public static Task<T> RetryRequestWithPolicyAsync<T,T1>(
Func<Task<T>> customAction,
int retryCount,
TimeSpan pauseSecondsBetweenFailures) where T1 : Exception
{
return
Policy
.Handle<T1>()
.WaitAndRetryAsync(retryCount, i => pauseSecondsBetweenFailures).ExecuteAsync(() => customAction?.Invoke());
}
}
这是重试 polly 的实际调用:
var result= await PollyExtension.RetryRequestWithPolicyAsync<int, CustomException>( () =>
{
if (1 + 1 == 2)
{
throw new MyException("test");
}
else
{
throw new CustomException("test");
}
},
1,
TimeSpan.FromSeconds(1));
我的期望是,如果我抛出 MyException,polly 也会将 MyException 抛给调用方方法。相反,抛出的异常是 System.AggregateException.
我在这里做错了什么?谢谢
编辑 1:经过更多调试后,AggregateException 似乎具有内部异常 MyException。这是故意的行为还是我做错了什么?
在您的 ExecuteAsync
电话中,您 没有在等待 代表。
await 关键字将从 AggregateException
.
首选方式:
.ExecuteAsync(async () => await customAction?.Invoke());