diff --git a/clients/agentgrpc/client.go b/clients/agentgrpc/client.go index 2c9b0837..9fd4a5fe 100644 --- a/clients/agentgrpc/client.go +++ b/clients/agentgrpc/client.go @@ -16,7 +16,7 @@ import ( "google.golang.org/grpc" ) -const defaultAgentResponseMaxByteCount = 250000 // 250K +const defaultAgentResponseMaxByteCount = 10000000 // 10M // Method is gRPC method type. type Method string diff --git a/services/components/botio/bot_client.go b/services/components/botio/bot_client.go index 3cbc34f2..ad472a0d 100644 --- a/services/components/botio/bot_client.go +++ b/services/components/botio/bot_client.go @@ -58,7 +58,7 @@ type BotClient interface { const ( DefaultBufferSize = 2000 RequestTimeout = 5 * time.Minute - MaxFindings = 50 + MaxFindings = 1000 DefaultInitializeTimeout = 5 * time.Minute DefaultHealthCheckInterval = time.Second * 30 )