Skip to content

Commit

Permalink
Fix deprecated method
Browse files Browse the repository at this point in the history
  • Loading branch information
tgeens committed Dec 5, 2023
1 parent 3e44bc5 commit c77ce74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public Map<String, Object> createInput(Authentication authentication, ServerWebE
var requestContext = webExchange.getRequest();
return Map.of(
"path", uriToPathArray(requestContext.getURI()),
"method", requestContext.getMethodValue(),
"method", requestContext.getMethod().name(),
"queryParams", requestContext.getQueryParams(),
"auth", authContext,
"user", authContext.getUser() // temp for backwards compat with existing policies
Expand Down

0 comments on commit c77ce74

Please sign in to comment.