Skip to content

Commit

Permalink
Pass pageSize (200) to call to get AMIs to get more images by default (
Browse files Browse the repository at this point in the history
…#1699)

increase page size
  • Loading branch information
knguyen100000010 authored Aug 19, 2024
1 parent b023732 commit 570f268
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def get_by_name(request, name, cell_name):
return rodimus_client.get("/base_images/names/%s" % name, request.teletraan_user_id.token, params=params)

def get_acceptance_by_name(request, name, cell_name):
params = [('cellName', cell_name)]
params = [('cellName', cell_name), ('pageSize', 200)]
return rodimus_client.get("/base_images/acceptances/%s" % name, request.teletraan_user_id.token, params=params)


Expand Down

0 comments on commit 570f268

Please sign in to comment.