We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
curl --config - <<'EOF' request = "POST" fail-with-body verbose show-error url = "http://172.16.22.1:12507/" header = "Expect:" insecure max-time = "300" data-urlencode = "transloadit@/path/to/data.json" globoff create-dirs max-redirs = "5" max-filesize = "128849018880" EOF
I'd rather not share data.json, but I can disclose it's a 16M JSON file.
data.json
Note: Unnecessary use of -X or --request, POST is already inferred. * Trying 172.16.22.1:12507...
Instead got curl: <stdin>:9: 'data-urlencode' out of memory
curl: <stdin>:9: 'data-urlencode' out of memory
git bisect pointed me to f37840a. I can confirm that reverting this commit does solve the issue for me.
Reproduced with macOS 14.5 and Linux 6.8.0
The text was updated successfully, but these errors were encountered:
Hm, right. It stops at 8MB now...
Sorry, something went wrong.
I'll fix
curl: allow 500MB data URL encode strings
854e6f3
Previously it would bail out of the generated data reached 8MB in memory. Reported-by: Antoine du Hamel Fixes #14337
ba9613c
Previously it would bail out of the generated data reached 8MB in memory. Reported-by: Antoine du Hamel Fixes #14337 Closes #14340
1f61db5
bagder
Successfully merging a pull request may close this issue.
I did this
I'd rather not share
data.json
, but I can disclose it's a 16M JSON file.I expected the following
Instead got
curl: <stdin>:9: 'data-urlencode' out of memory
curl/libcurl version
git bisect pointed me to f37840a. I can confirm that reverting this commit does solve the issue for me.
operating system
Reproduced with macOS 14.5 and Linux 6.8.0
The text was updated successfully, but these errors were encountered: