rpc: increase maxRequestContentLength size to 512kB (#17595)

This commit is contained in:
HackyMiner 2018-09-25 19:27:18 +09:00 committed by Felix Lange
parent 6663e5da10
commit b66f793443
1 changed files with 1 additions and 1 deletions

View File

@ -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")