X
Xon
Guest
I noticed that the
PHP:
Continue reading...
$maxBatch
sometimes doesn't apply if the $done value is larger than the expected for whatever reason.PHP:
Code:
public function calculateOptimalBatch($expected, $done, $start, $maxTime, $maxBatch = null)
{
...
if ($percentSpent > 1)
{
return max(1, $newExpected);
}
Continue reading...