https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41896
--- Comment #6 from David Cook <[email protected]> --- (In reply to David Cook from comment #5) > By replacing ||= with = we're making the above checking of the > MEMCACHED_NAMESPACE environmental variable pointless. Are we sure we want to > do that? If so, then we should remove support for those ENV variables. about.pl also seems to support an environmental variable for MEMCACHED_NAMESPACE. I think that's for the old school Apache config. Shall we just remove these two references? about.pl: my $memcached_namespace = $ENV{MEMCACHED_NAMESPACE} || C4::Context->config('memcached_namespace') // 'koha'; Koha/Cache.pm: $self->{'namespace'} ||= $ENV{MEMCACHED_NAMESPACE}; Likewise MEMCACHED_SERVERS only seems to be supported in about.pl and Koha/Cache.pm. (Looks like debian/scripts/koha-create and debian/templates/koha-sites.conf work together a bit differently than a person might expect...) -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://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/
