You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation of ServerTransportSecurityValidator requests that all headers are passed in as a map. This is inefficient, and header access becomes case-sensitive.
Introduce a validateHeaders(Function<String, List<String>> headerAccessor) instead.
Follow-up to #771 .
Current implementation of
ServerTransportSecurityValidatorrequests that all headers are passed in as a map. This is inefficient, and header access becomes case-sensitive.Introduce a
validateHeaders(Function<String, List<String>> headerAccessor)instead.