答案 0 :(得分:1)
如果未指定,默认情况下将由[Polly]重试的[Http status]代码的列表是什么?
Polly本身不包含对其重试内容的内置定义:您是用户specify that when defining a policy。
使用HttpClientFactory的Polly(在.Net Core中使用<div>
中的services.AddHttpClient(...).AddTransientHttpErrorPolicy(...)
)按Polly with HttpClientFactory documentation重试以下各项:
当您将鼠标悬停在方法上时,此should also be shown in the intellisense。
通过Polly.Extensions.Http
软件包也可以使用handles the same set of exceptions and status codes的StartUp
方法。