From c95e2264963238fa9676d041f1457ffe6d8852d6 Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Tue, 3 Nov 2015 11:44:08 +0000 Subject: [PATCH] Allow more errors. Fixes #1104 --- PHPCI/Store/BuildErrorStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Store/BuildErrorStore.php b/PHPCI/Store/BuildErrorStore.php index 9ba92310..815a4d18 100644 --- a/PHPCI/Store/BuildErrorStore.php +++ b/PHPCI/Store/BuildErrorStore.php @@ -31,7 +31,7 @@ class BuildErrorStore extends BuildErrorStoreBase $query .= ' AND created_date > :since'; } - $query .= ' LIMIT 5000'; + $query .= ' LIMIT 15000'; $stmt = Database::getConnection('read')->prepare($query);