From feaf4007f67f7a7f54e65d5096ce7b1ac3b7a4cc Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 15 Nov 2015 20:45:51 -0800 Subject: [PATCH] GUAC-1373: Limit history search result to 1000 records. --- .../guacamole/net/basic/rest/history/HistoryRESTService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/history/HistoryRESTService.java b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/history/HistoryRESTService.java index a99a5ec9c..1f9f4c8b8 100644 --- a/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/history/HistoryRESTService.java +++ b/guacamole/src/main/java/org/glyptodon/guacamole/net/basic/rest/history/HistoryRESTService.java @@ -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.