[open-ils-commits] r7528 -
trunk/Open-ILS/src/perlmods/OpenILS/Application
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Jul 6 12:00:38 EDT 2007
Author: erickson
Date: 2007-07-06 11:56:37 -0400 (Fri, 06 Jul 2007)
New Revision: 7528
Modified:
trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm
Log:
changed arbitrary flesh level from 2 to 1000 to avoid the chance of hitting that limit.
will discuss alternate approach to prevent having to put these limits at all...
Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm 2007-07-06 03:02:35 UTC (rev 7527)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm 2007-07-06 15:56:37 UTC (rev 7528)
@@ -1042,7 +1042,7 @@
[
{"parent_ou" => undef },
{
- flesh => 2,
+ flesh => 1000,
flesh_fields => { aou => ['children'] },
order_by => { aou => 'name'}
}
@@ -2308,7 +2308,7 @@
[
{ parent => undef},
{
- flesh => 10,
+ flesh => 1000,
flesh_fields => { pgt => ["children"] },
order_by => { pgt => 'name'}
}
@@ -2802,7 +2802,7 @@
[
{"parent_ou" => undef },
{
- flesh => 2,
+ flesh => 1000,
flesh_fields => { aou => ['children'] },
order_by => { aou => 'name'},
select => { aou => ["id","shortname", "name"]},
More information about the open-ils-commits
mailing list