|
Lines 178-183
if ( $tab eq 'about' ) {
Link Here
|
| 178 |
$where_is_memcached_config = 'config_only'; |
178 |
$where_is_memcached_config = 'config_only'; |
| 179 |
} |
179 |
} |
| 180 |
|
180 |
|
|
|
181 |
{ |
| 182 |
# BackgroundJob - test connection to message broker |
| 183 |
eval { |
| 184 |
Koha::BackgroundJob->connect; |
| 185 |
}; |
| 186 |
if ( $@ ) { |
| 187 |
warn $@; |
| 188 |
$template->param( warnConnectBroker => $@ ); |
| 189 |
} |
| 190 |
} |
| 191 |
|
| 181 |
$template->param( |
192 |
$template->param( |
| 182 |
effective_caching_method => $effective_caching_method, |
193 |
effective_caching_method => $effective_caching_method, |
| 183 |
memcached_servers => $memcached_servers, |
194 |
memcached_servers => $memcached_servers, |
|
Lines 672-688
if($tab eq 'sysinfo') {
Link Here
|
| 672 |
$template->param( warnFastCataloging => $no_FA_framework ); |
683 |
$template->param( warnFastCataloging => $no_FA_framework ); |
| 673 |
} |
684 |
} |
| 674 |
|
685 |
|
| 675 |
{ |
|
|
| 676 |
# BackgroundJob - test connection to message broker |
| 677 |
eval { |
| 678 |
Koha::BackgroundJob->connect; |
| 679 |
}; |
| 680 |
if ( $@ ) { |
| 681 |
warn $@; |
| 682 |
$template->param( warnConnectBroker => $@ ); |
| 683 |
} |
| 684 |
} |
| 685 |
|
| 686 |
#BZ 28267: Warn administrators if there are database rows with a format other than 'DYNAMIC' |
686 |
#BZ 28267: Warn administrators if there are database rows with a format other than 'DYNAMIC' |
| 687 |
{ |
687 |
{ |
| 688 |
$template->param( warnDbRowFormat => C4::Installer->has_non_dynamic_row_format ); |
688 |
$template->param( warnDbRowFormat => C4::Installer->has_non_dynamic_row_format ); |
| 689 |
- |
|
|