From 0ea4d58c63a0f85dc248e64de29e9620ffd29e62 Mon Sep 17 00:00:00 2001 From: Peter Sedgewick Date: Thu, 1 Jul 2021 23:18:44 +0200 Subject: [PATCH] fix(gost): Use DBDriver ctx in Psuedo (#1264) --- gost/gost.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gost/gost.go b/gost/gost.go index 8489723e..b9093340 100644 --- a/gost/gost.go +++ b/gost/gost.go @@ -72,7 +72,7 @@ func NewClient(cnf config.GostConf, family string) (Client, error) { case constant.Windows: return Microsoft{Base{DBDriver: driver}}, nil default: - return Pseudo{}, nil + return Pseudo{Base{DBDriver: driver}}, nil } }