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网关终于正常访问

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值