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

(-)a/Koha/BackgroundJob/BatchCancelHold.pm (-1 / +2 lines)
Lines 136-142 sub enqueue { Link Here
136
    $self->SUPER::enqueue(
136
    $self->SUPER::enqueue(
137
        {
137
        {
138
            job_size => scalar @hold_ids,
138
            job_size => scalar @hold_ids,
139
            job_args => { hold_ids => \@hold_ids, reason => $args->{reason} }
139
            job_args => { hold_ids => \@hold_ids, reason => $args->{reason} },
140
            queue    => 'turtle',
140
        }
141
        }
141
    );
142
    );
142
}
143
}
(-)a/Koha/BackgroundJob/BatchDeleteAuthority.pm (-1 / +2 lines)
Lines 89-95 sub enqueue { Link Here
89
89
90
    $self->SUPER::enqueue({
90
    $self->SUPER::enqueue({
91
        job_size => scalar @record_ids,
91
        job_size => scalar @record_ids,
92
        job_args => {record_ids => \@record_ids,}
92
        job_args => {record_ids => \@record_ids,},
93
        queue    => 'turtle',
93
    });
94
    });
94
}
95
}
95
96
(-)a/Koha/BackgroundJob/BatchDeleteBiblio.pm (-1 / +2 lines)
Lines 174-180 sub enqueue { Link Here
174
174
175
    $self->SUPER::enqueue({
175
    $self->SUPER::enqueue({
176
        job_size => scalar @record_ids,
176
        job_size => scalar @record_ids,
177
        job_args => {record_ids => \@record_ids,}
177
        job_args => {record_ids => \@record_ids,},
178
        queue    => 'turtle',
178
    });
179
    });
179
}
180
}
180
181
(-)a/Koha/BackgroundJob/BatchDeleteItem.pm (-1 / +2 lines)
Lines 215-221 sub enqueue { Link Here
215
            job_args => {
215
            job_args => {
216
                record_ids     => \@record_ids,
216
                record_ids     => \@record_ids,
217
                delete_biblios => $delete_biblios,
217
                delete_biblios => $delete_biblios,
218
            }
218
            },
219
            queue    => 'turtle',
219
        }
220
        }
220
    );
221
    );
221
}
222
}
(-)a/Koha/BackgroundJob/BatchUpdateAuthority.pm (-1 / +2 lines)
Lines 130-136 sub enqueue { Link Here
130
130
131
    $self->SUPER::enqueue({
131
    $self->SUPER::enqueue({
132
        job_size => scalar @record_ids,
132
        job_size => scalar @record_ids,
133
        job_args => {mmtid => $mmtid, record_ids => \@record_ids,}
133
        job_args => {mmtid => $mmtid, record_ids => \@record_ids,},
134
        queue    => 'turtle',
134
    });
135
    });
135
}
136
}
136
137
(-)a/Koha/BackgroundJob/BatchUpdateBiblio.pm (+1 lines)
Lines 136-141 sub enqueue { Link Here
136
    $self->SUPER::enqueue({
136
    $self->SUPER::enqueue({
137
        job_size => scalar @{$args->{record_ids}},
137
        job_size => scalar @{$args->{record_ids}},
138
        job_args => $args,
138
        job_args => $args,
139
        queue    => 'turtle',
139
    });
140
    });
140
}
141
}
141
142
(-)a/Koha/BackgroundJob/BatchUpdateItem.pm (+1 lines)
Lines 157-162 sub enqueue { Link Here
157
        {
157
        {
158
            job_size => scalar @record_ids,
158
            job_size => scalar @record_ids,
159
            job_args => {%$args},
159
            job_args => {%$args},
160
            queue    => 'turtle',
160
        }
161
        }
161
    );
162
    );
162
}
163
}
(-)a/misc/background_jobs_worker.pl (-2 / +1 lines)
Lines 41-47 Repeatable. Give the job queues this worker will process. Link Here
41
The different values available are:
41
The different values available are:
42
42
43
    default
43
    default
44
    index
44
    turtle
45
45
46
=back
46
=back
47
47
48
- 

Return to bug 27783