From 0a62c82ae2501788958bb25b578ed872b4e5a47d Mon Sep 17 00:00:00 2001 From: Navraj Chohan Date: Thu, 9 Jan 2014 02:17:27 +0000 Subject: [PATCH] 10k max limit on queries --- AppDB/datastore_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppDB/datastore_server.py b/AppDB/datastore_server.py index ed64660034..00610744d5 100644 --- a/AppDB/datastore_server.py +++ b/AppDB/datastore_server.py @@ -107,7 +107,7 @@ class DatastoreDistributed(): a distributed datastore instead of a flat file. """ # Max number of results for a query - _MAXIMUM_RESULTS = 1000000 + _MAXIMUM_RESULTS = 10000 # The number of entries looked at when doing a composite query # It will keep looking at this size window when getting the result