Skip to content

Commit

Permalink
Temporarily use page size 99 for v2 api list calls (#2243)
Browse files Browse the repository at this point in the history
  • Loading branch information
MuweiHe committed Sep 7, 2023
1 parent 4330387 commit 7d632c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ccloudv2/iam.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func (c *Client) ListIamInvitations() ([]iamv2.IamV2Invitation, error) {
}

func (c *Client) executeListInvitations(pageToken string) (iamv2.IamV2InvitationList, *http.Response, error) {
req := c.IamClient.InvitationsIamV2Api.ListIamV2Invitations(c.iamApiContext()).PageSize(ccloudV2ListPageSize)
req := c.IamClient.InvitationsIamV2Api.ListIamV2Invitations(c.iamApiContext()).PageSize(99)
if pageToken != "" {
req = req.PageToken(pageToken)
}
Expand Down

0 comments on commit 7d632c4

Please sign in to comment.