http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15006 Frédéric Demians <frederic@tamil.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |frederic@tamil.fr --- Comment #2 from Frédéric Demians <frederic@tamil.fr> --- With this: my $timeout = $self->{service}->{client_timeout} || $config->{client_timeout}; what will happen after Koha upgrade if a library doesn't add the new 'client_timeout' parameter to its config file. Wouldn't it be better to have something like: my $timeout = $self->{service}->{client_timeout} || $config->{client_timeout} || $self->{service}->{timeout} || $config->{timeout}; And/or a note via updatabase.pl to notify that SIP config file has to be reviewed after upgrade. -- You are receiving this mail because: You are watching all bug changes.