From 20bd5431a486b7ba75812b433f4811e08fb9c5f9 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 4 Jan 2023 10:08:06 +0100 Subject: [PATCH] Bug 32561: Prevent worker to run with unecessary modules in memory Content-Type: text/plain; charset=utf-8 Regression of bug 28413, bug 30410 added a "use Koha::Plugins" statement at the top of Koha::BackgroundJob, and so all Koha module are loaded by the worker on startup. See bug 28413 for more info Signed-off-by: Kyle M Hall Signed-off-by: Marcel de Rooy --- Koha/BackgroundJob.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/BackgroundJob.pm b/Koha/BackgroundJob.pm index 727bc3b2f7..0ba7ba46ed 100644 --- a/Koha/BackgroundJob.pm +++ b/Koha/BackgroundJob.pm @@ -25,7 +25,6 @@ use Try::Tiny qw( catch try ); use C4::Context; use Koha::DateUtils qw( dt_from_string ); use Koha::Exceptions; -use Koha::Plugins; use Koha::Exceptions::BackgroundJob; use base qw( Koha::Object ); @@ -442,6 +441,7 @@ sub plugin_types_to_classes { my ($self) = @_; unless ( exists $self->{_plugin_mapping} ) { + require Koha::Plugins; my @plugins = Koha::Plugins->new()->GetPlugins( { method => 'background_tasks', } ); foreach my $plugin (@plugins) { -- 2.30.2