You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
966 B
29 lines
966 B
using System;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Polly;
|
|
using Volo.Abp.Http.Client;
|
|
using Volo.Abp.Http.Client.IdentityModel;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace Win_in.Sfs.Scp.WebApi.HttpApi.Client.ConsoleTestApp
|
|
{
|
|
[DependsOn(
|
|
typeof(WebApiHttpApiClientModule),
|
|
typeof(AbpHttpClientIdentityModelModule)
|
|
)]
|
|
public class WebApiConsoleApiClientModule : AbpModule
|
|
{
|
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
PreConfigure<AbpHttpClientBuilderOptions>(options =>
|
|
{
|
|
options.ProxyClientBuildActions.Add((remoteServiceName, clientBuilder) =>
|
|
{
|
|
clientBuilder.AddTransientHttpErrorPolicy(
|
|
policyBuilder => policyBuilder.WaitAndRetryAsync(3, i => TimeSpan.FromSeconds(Math.Pow(2, i)))
|
|
);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|