Skip to content

Commit

Permalink
fix(gate): Bridge Dummy Pagination changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsilva-CGI committed May 24, 2023
1 parent 0d886df commit 11c253e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ class SyncService(
// TODO use pagination properly
val response = gateClient.legalEntities().getLegalEntitiesByExternalIds(
externalIds = externalIds,
paginationRequest = PaginationStartAfterRequest(null, 100)
paginationRequest = PaginationRequest(0, 100)
)
logger.info { "Gate returned ${response.content.size} valid legal entities, ${response.invalidEntries} were invalid" }
//logger.info { "Gate returned ${response.content.size} valid legal entities, ${response.invalidEntries} were invalid" } //TODO Need invalidEntries on Response
return response.content
}

Expand Down

0 comments on commit 11c253e

Please sign in to comment.