Skip to content

Commit

Permalink
Merge pull request #7113 from HenrikJannsen/increase-max-entries-at-g…
Browse files Browse the repository at this point in the history
…et-data-request-handler

Increase GetDataRequestHandler.MAX_ENTRIES to 20 000.
  • Loading branch information
alejandrogarcia83 authored May 25, 2024
2 parents 53e87ec + 9460dfe commit f03c29e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
public class GetDataRequestHandler {
private static final long TIMEOUT = 240;

private static final int MAX_ENTRIES = 5000;
private static final int MAX_ENTRIES = 20_000; // Tradestatistics are about 20 000 in 2 months.

///////////////////////////////////////////////////////////////////////////////////////////
// Listener
Expand Down

0 comments on commit f03c29e

Please sign in to comment.