fix: [internal] looplimit lowered to 50k for fetchAttributes

- maybe we should base this number off the available memory somehow...
pull/3551/head
iglocska 2018-08-06 20:53:30 +02:00
parent 5215ee1c5a
commit 4600cdef87
1 changed files with 1 additions and 1 deletions

View File

@ -2798,7 +2798,7 @@ class Attribute extends AppModel
$warninglists = $this->Warninglist->fetchForEventView();
}
if (empty($params['limit'])) {
$loopLimit = 100000;
$loopLimit = 50000;
$loop = true;
$params['limit'] = $loopLimit;
$params['page'] = 0;