Change the client notification update batch size from 25 to 50 to reduce
the overall number of update messages sent to the client in half. This
reduces the likelihood of communication failures between server/XUL for
long running, streaming requests.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Conflicts:
Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
my @holds;
my @canceled_holds; # newly canceled holds
- $chunk_size ||= 25; # chunked status updates
+ $chunk_size ||= 50; # chunked status updates
$client->max_chunk_size($chunk_size) if (!$client->can('max_bundle_size') && $client->can('max_chunk_size'));
my $counter = 0;