From b66f793443f572082d24f115e706532a620ba3ee Mon Sep 17 00:00:00 2001 From: HackyMiner Date: Tue, 25 Sep 2018 19:27:18 +0900 Subject: rpc: increase maxRequestContentLength size to 512kB (#17595) --- rpc/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rpc') diff --git a/rpc/http.go b/rpc/http.go index f3bd1f29c..9e4f2b261 100644 --- a/rpc/http.go +++ b/rpc/http.go @@ -37,7 +37,7 @@ import ( const ( contentType = "application/json" - maxRequestContentLength = 1024 * 128 + maxRequestContentLength = 1024 * 512 ) var nullAddr, _ = net.ResolveTCPAddr("tcp", "127.0.0.1:0") -- cgit v1.2.3