Skip to content

Commit

Permalink
Merge pull request #803 from forta-network/increase-bot-finding-limits
Browse files Browse the repository at this point in the history
Increase findings limit and size limit
  • Loading branch information
stevenlanders authored Aug 16, 2023
2 parents a0ea246 + c4944bf commit 550e8d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clients/agentgrpc/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion services/components/botio/bot_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit 550e8d2

Please sign in to comment.