From 261ddc303590452517f722a2cd56aac241bd4b81 Mon Sep 17 00:00:00 2001 From: Lari Taskula Date: Wed, 21 Mar 2018 11:04:46 +0200 Subject: [PATCH] Bug 11974 - (follow-up) Enable non-default unix socket location for database connections. --- t/db_dependent/zebra_config.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/t/db_dependent/zebra_config.pl b/t/db_dependent/zebra_config.pl index 55fedf4..a110999 100755 --- a/t/db_dependent/zebra_config.pl +++ b/t/db_dependent/zebra_config.pl @@ -57,6 +57,7 @@ $ENV{'__DB_HOST__'} = C4::Context->config('hostname') // 'localhost'; $ENV{'__DB_PORT__'} = C4::Context->config('port') // '3306'; $ENV{'__DB_USER__'} = C4::Context->config('user') // 'kohaadmin'; $ENV{'__DB_PASS__'} = C4::Context->config('pass') // 'katikoan'; +$ENV{'__DB_SOCKET__'} = C4::Context->config('socket') // ''; my @files = ( "$source/etc/koha-conf.xml", "$source/etc/searchengine/queryparser.yaml", -- 2.7.4