-
Notifications
You must be signed in to change notification settings - Fork 66
feat(kafka topic list): add flags for pagination #810
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
Changes from all commits
af47146
a1c1b67
74269bd
462ab64
01f7350
20a2494
f63d62b
5d805b2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,4 +3,10 @@ package cmdutil | |
| const ( | ||
| // The default indentation to use when printing data to stdout | ||
| DefaultJSONIndent = " " | ||
|
|
||
| // DefaultPageSize is the default number of items per page when using list commands | ||
| DefaultPageSize = 10 | ||
|
|
||
| // DefaultPageNumber is the default page number when using list commands | ||
| DefaultPageNumber = 1 | ||
|
Comment on lines
+8
to
+11
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think these needs to to be
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Build variables can only be a string 🤔 Leave it like this for now and we can figure out how to configure it later (leave a TODO)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Checked now it doesnt work as expected! It needs to be addressed in a follow-up. |
||
| ) | ||
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.
In a follow up PR, could you apply these wherever there is pagination?