Grails params in controller empty on too large post request

40 Views Asked by At

I send a post request with large body to grails server.

Tested locally and with production. For send using python requests.

like this requests.post(UPLOAD_URL, data = data, headers = HEADERS)

if data contains ~2mb - I see empty params in grails debugger in controller I'm not trying to upload a file, just a payload (but big size).

Is there any config in grails that could block my attempts?

Small data works fine.

UPDATED Just a python-requests issue. NodeJS upload works fine with 6.5 mb grails.controllers.upload.requestMaxSize configured well

Still solving

0

There are 0 best solutions below