|
Lines 25-31
use constant {
Link Here
|
| 25 |
use JSON qw( decode_json encode_json ); |
25 |
use JSON qw( decode_json encode_json ); |
| 26 |
use List::MoreUtils qw( any ); |
26 |
use List::MoreUtils qw( any ); |
| 27 |
|
27 |
|
| 28 |
use Koha::BackgroundJob::TestTransport; |
|
|
| 29 |
use Koha::Database; |
28 |
use Koha::Database; |
| 30 |
use Koha::Exceptions::Object; |
29 |
use Koha::Exceptions::Object; |
| 31 |
use Koha::Encryption; |
30 |
use Koha::Encryption; |
|
Lines 80-85
sub store {
Link Here
|
| 80 |
|
79 |
|
| 81 |
# Enqueue a connection test |
80 |
# Enqueue a connection test |
| 82 |
if ($changed_config) { |
81 |
if ($changed_config) { |
|
|
82 |
require Koha::BackgroundJob::TestTransport; |
| 83 |
Koha::BackgroundJob::TestTransport->new->enqueue( { transport_id => $self->id } ); |
83 |
Koha::BackgroundJob::TestTransport->new->enqueue( { transport_id => $self->id } ); |
| 84 |
} |
84 |
} |
| 85 |
|
85 |
|
| 86 |
- |
|
|