17 Oct
2023
17 Oct
'23
3:37 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32305 --- Comment #20 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- My solution is resolve the inconsistency between MQ and DB "mode": MQ my $job = Koha::BackgroundJobs->find($args->{job_id}); DB my $jobs = Koha::BackgroundJobs->search({ status => 'new', queue => \@queues }); We should do the same checks for MQ mode, so: my $job = Koha::BackgroundJobs->search( { id => $args->{job_id}, status => 'new, queue => \@queues } ); So check status new AND check queue. -- You are receiving this mail because: You are watching all bug changes.