Skip to content

Commit 557dadb

Browse files
committed
DEVDOCS-15800 - limiting Monitoring data to 2000 items to be consistent with other launchers.
1 parent 8eb0185 commit 557dadb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/docusign/controller/monitor/services/GetMonitoringDataService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public static JSONArray getMonitoringData(DataSetApi datasetApi) throws Exceptio
1818

1919
LOGGER.info("before optinos");
2020
DataSetApi.GetStreamOptions options = datasetApi.new GetStreamOptions();
21+
options.setLimit(2000);
2122

2223
// First call the endpoint with no cursor to get the first records.
2324
// After each call, save the cursor and use it to make the next

0 commit comments

Comments
 (0)