View | Details | Raw Unified | Return to bug 27421
Collapse All | Expand All

(-)a/Koha/BackgroundJob/MARCImportCommitBatch.pm (+1 lines)
Lines 118-123 sub enqueue { Link Here
118
    $self->SUPER::enqueue({
118
    $self->SUPER::enqueue({
119
        job_size => Koha::Import::Records->search({ import_batch_id => $args->{import_batch_id} })->count,
119
        job_size => Koha::Import::Records->search({ import_batch_id => $args->{import_batch_id} })->count,
120
        job_args => $args,
120
        job_args => $args,
121
        queue    => 'long_tasks',
121
    });
122
    });
122
}
123
}
123
124
(-)a/Koha/BackgroundJob/MARCImportRevertBatch.pm (+1 lines)
Lines 114-119 sub enqueue { Link Here
114
    $self->SUPER::enqueue({
114
    $self->SUPER::enqueue({
115
        job_size => Koha::Import::Records->search({ import_batch_id => $args->{import_batch_id} })->count,
115
        job_size => Koha::Import::Records->search({ import_batch_id => $args->{import_batch_id} })->count,
116
        job_args => $args,
116
        job_args => $args,
117
        queue    => 'long_tasks',
117
    });
118
    });
118
}
119
}
119
120
(-)a/Koha/BackgroundJob/StageMARCForImport.pm (-1 / +1 lines)
Lines 199-204 sub enqueue { Link Here
199
    $self->SUPER::enqueue({
199
    $self->SUPER::enqueue({
200
        job_size => 0, # TODO Unknown for now?
200
        job_size => 0, # TODO Unknown for now?
201
        job_args => $args,
201
        job_args => $args,
202
        queue    => 'long_tasks',
202
    });
203
    });
203
}
204
}
204
205
205
- 

Return to bug 27421