diff --git a/consul/rpc.go b/consul/rpc.go index 383fbf7df5..b4b7ec8c49 100644 --- a/consul/rpc.go +++ b/consul/rpc.go @@ -27,8 +27,8 @@ const ( maxQueryTime = 600 * time.Second // Warn if the Raft command is larger than this. - // If it's over 8MB something is probably being abusive. - raftWarnSize = 8 * 1024 * 1024 + // If it's over 1MB something is probably being abusive. + raftWarnSize = 1024 * 1024 ) // listen is used to listen for incoming RPC connections