From 7bcbb5eacaa2c510d3d047bf5697f8e94ebb02cc Mon Sep 17 00:00:00 2001 From: Souhaila Noor Date: Fri, 3 Dec 2021 12:10:31 -0600 Subject: [PATCH] fixed indentation --- server/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/config.go b/server/config.go index 6bf2b22c4..0c1989c7a 100644 --- a/server/config.go +++ b/server/config.go @@ -610,9 +610,9 @@ func lookupAddr(ctx context.Context, resolver *net.Resolver, host string) (strin } func (c *Config) ValidateAuth() ([]error, error) { - if !c.Auth.Enable { - return []error{}, nil - } + if !c.Auth.Enable { + return []error{}, nil + } authConfig := map[string]string{ "ClientId": c.Auth.ClientId, "ClientSecret": c.Auth.ClientSecret,