https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16104
--- Comment #9 from Jacek Ablewicz <[email protected]> --- I found another workaround: +can_load( modules => { 'Cache::Memory' => undef } ) && Cache::Memory->new(); our %L1_cache; - if ( can_load( modules => { 'Cache::Memory' => undef, nocache => 1 } ) ) { + if ( can_load( modules => { 'Cache::Memory' => undef } ) ) { which seems to work (?, "perl -wc C4/AuthoritiesMarc.pm" does not emit any warnings) without introducing noticeable performance issues, but I have no idea how exactly/why it works.. I have a feeling that it only hides the problem (whatever it really is) instead of fixing it properly. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
