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
Hello,
Just tried the example of curl in https://explain.dalibo.com/about :
$ curl -Ls -w %{url_effective} -d '{"plan":"Seq Scan on tenk1 (cost=0.00..333.00 rows=10000 width=148)"}' -H "Content-Type: application/json" -X POST https://explain.dalibo.com/new -o /dev/null
And when clicking on the url returned by the curl I get an Internal Server Error.
Robin,
The text was updated successfully, but these errors were encountered:
hey @robinportigliatti, same problem here.
did you manage to solve it ?
Sorry, something went wrong.
The error come from the fact that there's no title provided in the body (-d option).
title
-d
The following works:
$ curl -Ls -w %{url_effective} -d '{"plan":"Seq Scan on tenk1 (cost=0.00..333.00 rows=10000 width=148)", "title": "some title"}' -H "Content-Type: application/json" -X POST https://explain.dalibo.com/new -o /dev/null
Commit 87fa71e fixes the problem, but it hasn't been deployed yet.
No branches or pull requests
Hello,
Just tried the example of curl in https://explain.dalibo.com/about :
And when clicking on the url returned by the curl I get an Internal Server Error.
Robin,
The text was updated successfully, but these errors were encountered: