diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-01-06 21:45:47 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-01-06 21:45:47 -0800 |
commit | 8b22ad69bf38267f34077a82e088dae515d3337e (patch) | |
tree | ffcf6156b85a2d8958ab629bac76919d6538e5e8 /FS | |
parent | 8eb0c33a077c4cf2e616b59ead732a001b34ef08 (diff) |
fix perf edge case with multiple large packages not just one, RT#26097
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main/Packages.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/cust_main/Packages.pm b/FS/FS/cust_main/Packages.pm index e085981b7..7bb32726c 100644 --- a/FS/FS/cust_main/Packages.pm +++ b/FS/FS/cust_main/Packages.pm @@ -501,6 +501,7 @@ sub sort_packages { return 0 if !$a_num_cust_svc && !$b_num_cust_svc; return -1 if $a_num_cust_svc && !$b_num_cust_svc; return 1 if !$a_num_cust_svc && $b_num_cust_svc; + return 0 if $a_num_cust_svc + $b_num_cust_svc > 20; #for perf, just give up my @a_cust_svc = $a->cust_svc_unsorted; my @b_cust_svc = $b->cust_svc_unsorted; return 0 if !scalar(@a_cust_svc) && !scalar(@b_cust_svc); |