Allow more errors. Fixes #1104

This commit is contained in:
Dan Cryer 2015-11-03 11:44:08 +00:00
parent 7bfba0ee30
commit c95e226496

View file

@ -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);