From e43c65cc76eb898e54d2075f11937ca25aa1b95c Mon Sep 17 00:00:00 2001 From: Nick Meves Date: Mon, 25 May 2020 08:16:11 -0700 Subject: [PATCH] Fix SessionOptions struct spacing --- pkg/apis/options/sessions.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/apis/options/sessions.go b/pkg/apis/options/sessions.go index 16b419d6..3b2a4d19 100644 --- a/pkg/apis/options/sessions.go +++ b/pkg/apis/options/sessions.go @@ -4,9 +4,9 @@ import "github.com/oauth2-proxy/oauth2-proxy/pkg/encryption" // SessionOptions contains configuration options for the SessionStore providers. type SessionOptions struct { - Type string `flag:"session-store-type" cfg:"session_store_type"` + Type string `flag:"session-store-type" cfg:"session_store_type"` Cipher encryption.Cipher `cfg:",internal"` - Redis RedisStoreOptions `cfg:",squash"` + Redis RedisStoreOptions `cfg:",squash"` } // CookieSessionStoreType is used to indicate the CookieSessionStore should be