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

fix(v2client): updates limits for list secrets and routes #270

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions riocli/v2client/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Rapyuta Robotics
# Copyright 2024 Rapyuta Robotics
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -342,7 +342,7 @@ def list_static_routes(
while True:
params.update({
"continue": offset,
"limit": 10,
"limit": 50,
})
response = RestClient(url).method(HttpMethod.GET).query_param(
params).headers(headers).execute()
Expand Down Expand Up @@ -463,7 +463,7 @@ def list_secrets(
while True:
params.update({
"continue": offset,
"limit": 10,
"limit": 50,
})
response = RestClient(url).method(HttpMethod.GET).query_param(
params).headers(headers).execute()
Expand Down
Loading