File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -103,13 +103,15 @@ func (service *OIDCService) GetClientConfigFromRequest(r *http.Request) (*OIDCCl
103
103
if issuerParam == "" {
104
104
return nil , errors .New ("issuer param not specified" )
105
105
}
106
+ log .WithField ("issuerParam" , issuerParam ).Trace ("GetClientConfigFromRequest" )
106
107
issuer , err := url .QueryUnescape (issuerParam )
107
108
if err != nil {
108
109
return nil , errors .New ("bad issuer param" )
109
110
}
110
111
log .WithField ("issuer" , issuer ).Trace ("at GetClientConfigFromRequest" )
111
112
112
- for _ , value := range service .configsById {
113
+ for id , value := range service .configsById {
114
+ log .WithField ("issuer" , value .Issuer ).WithField ("id" , id ).Trace ("GetClientConfigFromRequest (candidate)" )
113
115
if value .Issuer == issuer {
114
116
return value , nil
115
117
}
You can’t perform that action at this time.
0 commit comments