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

(-)a/Koha/BackgroundJob.pm (-2 / +1 lines)
Lines 128-134 sub enqueue { Link Here
128
    } catch {
128
    } catch {
129
        warn "Cannot connect to broker " . $_;
129
        warn "Cannot connect to broker " . $_;
130
    };
130
    };
131
    return unless $conn;
131
    return $self->id unless $conn;
132
132
133
    $json_args = $json->encode($job_args);
133
    $json_args = $json->encode($job_args);
134
    try {
134
    try {
135
- 

Return to bug 33044