From: phasefx Date: Wed, 11 Mar 2009 05:06:32 +0000 (+0000) Subject: forgot to decrement a counter for the chunk size.. since performance was pretty spiff... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a06a9ddec40f8a19c68982a807916064c09f4313;p=Evergreen.git forgot to decrement a counter for the chunk size.. since performance was pretty spiffy with the bug, this probably argues for using larger chunk sizes git-svn-id: svn://svn.open-ils.org/ILS/trunk@12486 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/chrome/content/util/exec.js b/Open-ILS/xul/staff_client/chrome/content/util/exec.js index 842a4183f4..e3122b324e 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/exec.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/exec.js @@ -17,7 +17,7 @@ util.exec.prototype = { function() { var i = obj.chunk_size; while (funcs.length > 0 && i > 0) { - funcs.shift()(); + funcs.shift()(); i--; } }, interval