GUAC-1373: Limit history search result to 1000 records.

This commit is contained in:
Michael Jumper
2015-11-15 20:45:51 -08:00
committed by James Muehlner
parent 77804b2a9d
commit feaf4007f6

View File

@@ -61,7 +61,7 @@ public class HistoryRESTService {
/**
* The maximum number of history records to return in any one response.
*/
private static final int MAXIMUM_HISTORY_SIZE = 10000;
private static final int MAXIMUM_HISTORY_SIZE = 1000;
/**
* A service for authenticating users from auth tokens.