Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
mharding-hpe authored Dec 17, 2024
1 parent 2b181ad commit 740f752
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bos/server/controllers/v2/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def get_v2_components(ids="",
phase=None,
status=None,
start_after_id=None,
page_size=None):
page_size=0):
"""Used by the GET /components API operation
Allows filtering using a comma separated list of ids.
Expand Down Expand Up @@ -78,7 +78,7 @@ def get_v2_components(ids="",
status=status,
tenant=tenant,
start_after_id=start_after_id,
page_size=page_size or 0,
page_size=page_size,
delete_timestamp=True)
LOGGER.debug(
"GET /v2/components returning data for tenant=%s on %d components",
Expand Down

0 comments on commit 740f752

Please sign in to comment.