feat: fix maximum request payload size calculation to support 40MB

This commit is contained in:
Yoga Pangestu 2026-05-14 11:33:02 +07:00
parent 6d7b1d52d8
commit 230e7e4e70

View File

@ -274,7 +274,7 @@
*/ */
'payload' => [ 'payload' => [
'max_size' => 1024 * 40, // 40MB - maximum request payload size in bytes 'max_size' => 1024 * 1024 * 40, // 40MB - maximum request payload size in bytes
'max_nesting_depth' => 50, // Maximum depth of dot-notation property paths 'max_nesting_depth' => 50, // Maximum depth of dot-notation property paths
'max_calls' => 50, // Maximum method calls per request 'max_calls' => 50, // Maximum method calls per request
'max_components' => 20, // Maximum components per batch request 'max_components' => 20, // Maximum components per batch request