Skip to content

Commit

Permalink
Fix SecurityWebApplicationInitializer.getSecurityDispatcherTypes exam…
Browse files Browse the repository at this point in the history
…ple in doc #12939
  • Loading branch information
Brummolix authored and marcusdacoregio committed Mar 30, 2023
1 parent eb58655 commit a513fc0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ public class SecurityWebApplicationInitializer extends AbstractSecurityWebApplic
@Override
protected EnumSet<DispatcherType> getSecurityDispatcherTypes() {
return EnumSet.of(DispatcherType.REQUEST, DispatcherType.ERROR, DispatcherType.FORWARD,
return EnumSet.of(DispatcherType.REQUEST, DispatcherType.ERROR, DispatcherType.ASYNC,
DispatcherType.FORWARD, DispatcherType.INCLUDE);
}
Expand Down

0 comments on commit a513fc0

Please sign in to comment.