|
Lines 28-42
try {
Link Here
|
| 28 |
warn sprintf "Cannot connect to the message broker, the jobs will be processed anyway (%s)", $_; |
28 |
warn sprintf "Cannot connect to the message broker, the jobs will be processed anyway (%s)", $_; |
| 29 |
}; |
29 |
}; |
| 30 |
|
30 |
|
| 31 |
my @job_types = qw( |
31 |
my @job_types = keys %{Koha::BackgroundJob::type_to_class_mapping()}; |
| 32 |
batch_biblio_record_modification |
|
|
| 33 |
batch_authority_record_modification |
| 34 |
batch_item_record_modification |
| 35 |
batch_biblio_record_deletion |
| 36 |
batch_authority_record_deletion |
| 37 |
batch_item_record_deletion |
| 38 |
batch_hold_cancel |
| 39 |
); |
| 40 |
|
32 |
|
| 41 |
if ( $conn ) { |
33 |
if ( $conn ) { |
| 42 |
# FIXME cf note in Koha::BackgroundJob about $namespace |
34 |
# FIXME cf note in Koha::BackgroundJob about $namespace |
| 43 |
- |
|
|