Ocelot: Index was out of range. Must be non-negative and less than the size of the collection

一、错误: Index was out of range.……

1.1 Consul服务注入正常

在这里插入图片描述

        public static void RegisterConsul()
        {
            ConsulClient client = new ConsulClient(options =>
            {
                options.Address = new Uri("http://localhost:8500");
                options.Datacenter = "dc1";
            });

            client.Agent.ServiceRegister(new AgentServiceRegistration()
            {
                ID = "ApiService1",
                Name = "Api",
                Address="http://localhost:5002/api/values",
                //Address = "localhost",
                //Port =5002,
                Tags = new string[] { "1" },
                Check = new AgentServiceCheck()
                {
                    Interval = TimeSpan.FromSeconds(10),//每10秒检查一次
                    HTTP = $"http://localhost:5002/api/values",//地址
                    Timeout = TimeSpan.FromSeconds(20),//超时时间
                    DeregisterCriticalServiceAfter = TimeSpan.FromSeconds(60)//无响应移除时间
                }
            });
        }

2.2 Ocelot报错: Index was out of range.……

在这里插入图片描述

2.3 找出错误:原来是注入方式错误,更改注入方式

public static void RegisterConsul()
        {
            ConsulClient client = new ConsulClient(options =>
            {
                options.Address = new Uri("http://localhost:8500");
                options.Datacenter = "dc1";
            });

            client.Agent.ServiceRegister(new AgentServiceRegistration()
            {
                ID = "ApiService1",
                Name = "Api",               
                Address = "localhost",
                Port =5002,
                Tags = new string[] { "1" },
                Check = new AgentServiceCheck()
                {
                    Interval = TimeSpan.FromSeconds(10),//每10秒检查一次
                    HTTP = $"http://localhost:5002/api/values",//地址
                    Timeout = TimeSpan.FromSeconds(20),//超时时间
                    DeregisterCriticalServiceAfter = TimeSpan.FromSeconds(60)//无响应移除时间
                }
            });
        }

三、Ocelot网关终于正常访问

在这里插入图片描述

在 .NET 5 中,你可以使用 ASP.NET Core 中的中间件来捕获 Ocelot 中的 polly.Timeout.TimeoutRejectedException 异常。具体来说,你可以在 Startup.Configure 方法中添加一个中间件来处理异常。 以下是一个简单的示例,演示如何在 ASP.NET Core 5 应用程序中捕获 Ocelot 中的 polly.Timeout.TimeoutRejectedException 异常: ```csharp public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { app.UseExceptionHandler(errorApp => { errorApp.Run(async context => { var exception = context.Features.Get<IExceptionHandlerFeature>().Error; if (exception is Polly.Timeout.TimeoutRejectedException) { // 处理 TimeoutRejectedException 异常 await context.Response.WriteAsync("请求超时"); } else { // 处理其他异常 await context.Response.WriteAsync(exception.Message); } }); }); // 添加 Ocelot 中间件 app.UseOcelot().Wait(); } ``` 在上面的示例中,我们使用了 UseExceptionHandler 中间件来捕获异常。当发生异常时,中间件会进入 Run 方法中,并通过 Get<IExceptionHandlerFeature>() 方法获取异常信息。如果异常是 polly.Timeout.TimeoutRejectedException 异常,我们就可以对其进行特殊处理,例如返回一个错误信息给用户。如果异常是其他类型的异常,我们则可以进行其他的处理。 需要注意的是,在使用 Ocelot 中间件时,要确保它在异常处理中间件之前被添加,这样才能确保异常能被正确地捕获和处理。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值