-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
fix(endpoints): propagate next page size param #9029 #9648
Conversation
|
||
local args = self.args.uri | ||
if args.tags then | ||
next_page_tags = "&tags=" .. escape_uri(type(args.tags) == "table" and args.tags[1] or args.tags) | ||
end | ||
|
||
if type(args.size) == "number" then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fffonion I changed this validation in one of the last commits... I believe I need to update this Pull Request
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jacksjm I tried to rebase but maybe i lost some of your commits. Could you rebase your PR upon master (you can use this PR as start and force push to yours)? Make sure not to use "merge" but "rebase", since we only merge PR with a rebase, if the PR contains merge commits, it may lead to conflicts as order changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nvm, looks like i can do a squash : ) closing this now
…g the `route` entity" (#9648) Cherry-picked from #13328 Revert Kong/kong-ee#9512 Co-authored-by: Xumin <[email protected]>
Cherry-picked from #9503