From 937ecc8d2f0910dfd3565e22dea6bc3dae9d4010 Mon Sep 17 00:00:00 2001 From: Ben Toogood Date: Mon, 11 May 2020 20:38:05 +0100 Subject: [PATCH] Disable auth service client --- service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service.go b/service.go index f3ba2086..00967ea6 100644 --- a/service.go +++ b/service.go @@ -115,7 +115,7 @@ func (s *service) Init(opts ...Option) { s.opts.Store.Init(store.Table(name)) // Set the client for the micro clients - s.opts.Auth.Init(auth.WithClient(s.Client())) + // s.opts.Auth.Init(auth.WithClient(s.Client())) s.opts.Runtime.Init(runtime.WithClient(s.Client())) s.opts.Store.Init(store.WithClient(s.Client())) })