Skip to content
New issue

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

Extra curl on Pagination Section of Search [JIRA: DOC-843] #2429

Open
pogzie opened this issue Feb 7, 2017 · 0 comments
Open

Extra curl on Pagination Section of Search [JIRA: DOC-843] #2429

pogzie opened this issue Feb 7, 2017 · 0 comments

Comments

@pogzie
Copy link
Contributor

pogzie commented Feb 7, 2017

ROWS_PER_PAGE=2
PAGE=2
START=$(($ROWS_PER_PAGE * ($PAGE-1)))

curl
curl "$RIAK_HOST/search/query/famous?wt=json&q=*:*&start=$START&rows=$ROWS_PER_PAGE" | jsonpp

Should be just:

ROWS_PER_PAGE=2
PAGE=2
START=$(($ROWS_PER_PAGE * ($PAGE-1)))

curl "$RIAK_HOST/search/query/famous?wt=json&q=*:*&start=$START&rows=$ROWS_PER_PAGE" | jsonpp
@Basho-JIRA Basho-JIRA changed the title Extra curl on Pagination Section of Search Extra curl on Pagination Section of Search [JIRA: DOC-843] Feb 7, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants