[Koha-bugs] [Bug 30982] Use the REST API for background job list view

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Sep 23 09:22:57 CEST 2022


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30982

--- Comment #63 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> ---
No blocker, not fixing it here:

        const job_statuses = [
            {'_id': 'new',       '_str': _("New")},
            {'_id': 'cancelled', '_str': _("Cancelled")},
            {'_id': 'finished',  '_str': _("Finished")},
            {'_id': 'started',   '_str': _("Started")},
            {'_id': 'running',   '_str': _("Running")},
            {'_id': 'failed',    '_str': _("Failed")},

We have status running and started. Probably an error.
The status 'running' may probably be coming from C4::BackgroundJob.pm
    $self->{'status'} = "running";
It seems that Koha::BackgroundJob does not use 'running'.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list