http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15006

Frédéric Demians <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #2 from Frédéric Demians <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to