From 88379b90883f15c9c329f33aaca47598f3c91c64 Mon Sep 17 00:00:00 2001 From: Adrian Sutton Date: Thu, 5 Oct 2023 19:10:28 +1000 Subject: [PATCH] Increase the maximum size for engine API requests via http to match websockets. --- rpc/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/http.go b/rpc/http.go index 741fa1c0eb..19e44a2e8c 100644 --- a/rpc/http.go +++ b/rpc/http.go @@ -33,7 +33,7 @@ import ( ) const ( - maxRequestContentLength = 1024 * 1024 * 5 + maxRequestContentLength = 1024 * 1024 * 32 contentType = "application/json" )