rpc: raise HTTP/WebSocket request size limit to 5MB

This commit is contained in:
Felix Lange 2019-07-19 15:51:46 +02:00
parent 7104979968
commit a27c950996

View file

@ -36,7 +36,7 @@ import (
) )
const ( const (
maxRequestContentLength = 1024 * 512 maxRequestContentLength = 1024 * 1024 * 5
contentType = "application/json" contentType = "application/json"
) )