From 5d9dd6fd245e14c678e1fa5a5408c49360ac931d 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);