Skip to content

Commit

Permalink
Merge pull request #160 from TAMULib/folio-item-limit
Browse files Browse the repository at this point in the history
Increase FOLIO item limit to 2000
  • Loading branch information
jsavell committed Nov 22, 2021
2 parents 4a5cb5e + f90da18 commit 6db4db0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ private Map<String, Map<String, String>> getOkapiItems(String holdingsRecordId)
String itemsMessage = String.format("items from okapi with holdingsRecordId \"%s\"", holdingsRecordId);

String itemsOffset = "0";
String itemsLimit = "1000";
String itemsLimit = "2000";

logger.debug("Asking for items from: {}", itemsUrl);
JsonNode itemsResponse = okapiRequestJsonNode(itemsUrl, HttpMethod.GET, itemsMessage, itemsQuery, itemsOffset, itemsLimit);
Expand Down

0 comments on commit 6db4db0

Please sign in to comment.