From f3faecb2ee15fba5e04c0060aa95561718e6610f Mon Sep 17 00:00:00 2001 From: Jicheng Lu <103353@smsassist.com> Date: Thu, 21 Nov 2024 01:01:36 -0600 Subject: [PATCH] minor change --- src/Infrastructure/BotSharp.Core/Routing/RoutingContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Infrastructure/BotSharp.Core/Routing/RoutingContext.cs b/src/Infrastructure/BotSharp.Core/Routing/RoutingContext.cs index 3cb1eac9..bb08fcb6 100644 --- a/src/Infrastructure/BotSharp.Core/Routing/RoutingContext.cs +++ b/src/Infrastructure/BotSharp.Core/Routing/RoutingContext.cs @@ -42,7 +42,7 @@ public class RoutingContext : IRoutingContext _routerAgentIds = agentService.GetAgents(new AgentFilter { Type = AgentType.Routing, - Pager = new Pagination { Size = 20 } + Pager = new Pagination { Size = 100 } }).Result.Items.Select(x => x.Id).ToArray(); }