[Koha-bugs] [Bug 15006] Need to distinguish client timeout from login timeout

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Nov 25 16:27:17 CET 2015


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

Frédéric Demians <frederic at tamil.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |frederic at tamil.fr

--- Comment #2 from Frédéric Demians <frederic at 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.


More information about the Koha-bugs mailing list