https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26457
--- Comment #12 from Jonathan Druart <[email protected]> --- I've tried hard to recreate the problem but failed (ktd). 40 plack workers, limit 50 renewals I created a bunch of checkouts for a given patron: use Koha::Items; use C4::Circulation; use t::lib::Mocks; my $items = Koha::Items->search(); my $patron = Koha::Patrons->find(51); t::lib::Mocks::mock_userenv({ patron => $patron }); while ( my $item = $items->next ) { C4::Circulation::AddIssue($patron->unblessed, $item->barcode); } Then opened 5 tabs /cgi-bin/koha/circ/circulation.pl?borrowernumber=51 And click "Renewal all" as soon as I could. Everything got renewed correctly. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ 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/
