Skip to content

feat: remove set_query_page_limit decorator at list of sa #434

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

Merged
merged 11 commits into from
Feb 26, 2025
5 changes: 3 additions & 2 deletions src/spaceone/identity/service/service_account_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ def update(
)

if (
service_account_vo.secret_id and params.project_id
service_account_vo.secret_id
and params.project_id
and service_account_vo.project_id != params.project_id
):
secret_manager = SecretManager()
Expand Down Expand Up @@ -418,7 +419,7 @@ def get(
]
)
@append_keyword_filter(["service_account_id", "name"])
# @set_query_page_limit(2000)
@set_query_page_limit(2000)
@convert_model
def list(
self, params: ServiceAccountSearchQueryRequest
Expand Down
Loading