From 4fbbf28a16fa760212b0ee63ffe55c3aee5655d6 Mon Sep 17 00:00:00 2001 From: Travis Groth Date: Thu, 17 Dec 2020 11:13:09 -0500 Subject: [PATCH] config: fix ignored yaml fields (#1698) --- config/options.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/options.go b/config/options.go index 0e3d821d5..5033d8c8f 100644 --- a/config/options.go +++ b/config/options.go @@ -114,10 +114,10 @@ type Options struct { // AuthenticateURL represents the externally accessible http endpoints // used for authentication requests and callbacks AuthenticateURLString string `mapstructure:"authenticate_service_url" yaml:"authenticate_service_url,omitempty"` - AuthenticateURL *url.URL `yaml:"-,omitempty"` + AuthenticateURL *url.URL `yaml:"-"` // SignOutRedirectURL represents the url that user will be redirected to after signing out. SignOutRedirectURLString string `mapstructure:"signout_redirect_url" yaml:"signout_redirect_url,omitempty"` - SignOutRedirectURL *url.URL `yaml:"-,omitempty"` + SignOutRedirectURL *url.URL `yaml:"-"` // AuthenticateCallbackPath is the path to the HTTP endpoint that will // receive the response from your identity provider. The value must exactly