https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36155

--- Comment #9 from David Cook <[email protected]> ---
My test plan:
1. Create many budgets (see bug 35921)
       perl -MKoha::Database -e '
           my $schema = Koha::Database->schema;
           my $period = $schema->resultset("Aqbudgetperiod")->create({
               budget_period_startdate => "2000-01-01",
               budget_period_enddate => "2999-12-31"
           });
           $schema->resultset("Aqbudget")->create({
               budget_owner_id => 1,
               budget_period_id => $period->id
           }) for (1..1000)
       '
2. Go to http://localhost:8081/cgi-bin/koha/suggestion/suggestion.pl
3. Note how it takes several seconds to load
4. Apply the patch
5. koha-plack --restart kohadev
6. Go to http://localhost:8081/cgi-bin/koha/suggestion/suggestion.pl
7. Note how it loads in < 1 second now

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to