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
the curl in the book is curl -XGET 'localhost:9200/agile_data_science/airplanes/_search?q=*' which is incorrect.
curl -XGET 'localhost:9200/agile_data_science/airplanes/_search?q=*'
"airplanes" should not be plural, but singular. Correct line is: curl -XGET 'localhost:9200/agile_data_science/airplane/_search?q=*'
curl -XGET 'localhost:9200/agile_data_science/airplane/_search?q=*'
The text was updated successfully, but these errors were encountered:
Thanks, I'll try to get this in an update. In general readers should refer to the Github code over the book for most everything.
Sorry, something went wrong.
No branches or pull requests
the curl in the book is
curl -XGET 'localhost:9200/agile_data_science/airplanes/_search?q=*'
which is incorrect."airplanes" should not be plural, but singular. Correct line is:
curl -XGET 'localhost:9200/agile_data_science/airplane/_search?q=*'
The text was updated successfully, but these errors were encountered: