@@ -, +, @@ the job --- Koha/BackgroundJob.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/Koha/BackgroundJob.pm +++ a/Koha/BackgroundJob.pm @@ -100,6 +100,9 @@ sub enqueue { my $borrowernumber = C4::Context->userenv->{number}; # FIXME Handle non GUI calls my $json_args = encode_json $job_args; + + my $conn = $self->connect; # Ensure we can reach the server + $self->set( { status => 'new', @@ -115,7 +118,6 @@ sub enqueue { $json_args = encode_json $job_args; try { - my $conn = $self->connect; # This namespace is wrong, it must be a vhost instead. # But to do so it needs to be created on the server => much more work when a new Koha instance is created. # Also, here we just want the Koha instance's name, but it's not in the config... --