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
Spring Security started seeing test failures after #33639 due to the scheme now being lower-cased. The OAuth2 redirect_uri in is parsed from {baseScheme}://... and on 6.2.0-SNAPSHOT, the scheme becomes {basescheme}, which does not match the template variable name. We need to revise the parsers to allow use of URI variables in the scheme.
The text was updated successfully, but these errors were encountered:
…RI variable
See spring-projectsGH-33699, Continue c261ca3
```
Map has no value for 'thescheme'
java.lang.IllegalArgumentException: Map has no value for 'thescheme'
at org.springframework.web.util.UriComponents$MapTemplateVariables.getValue(UriComponents.java:348)
at org.springframework.web.util.UriComponents.expandUriComponent(UriComponents.java:263)
at org.springframework.web.util.HierarchicalUriComponents.expandInternal(HierarchicalUriComponents.java:436)
at org.springframework.web.util.HierarchicalUriComponents.expandInternal(HierarchicalUriComponents.java:53)
at org.springframework.web.util.UriComponents.expand(UriComponents.java:161)
at org.springframework.web.util.UriComponentsBuilder.buildAndExpand(UriComponentsBuilder.java:364)
```
Spring Security started seeing test failures after #33639 due to the scheme now being lower-cased. The OAuth2
redirect_uri
in is parsed from{baseScheme}://...
and on6.2.0-SNAPSHOT
, the scheme becomes{basescheme}
, which does not match the template variable name. We need to revise the parsers to allow use of URI variables in the scheme.The text was updated successfully, but these errors were encountered: