Skip to content

Commit

Permalink
Fix SecurityWebApplicationInitializer.getSecurityDispatcherTypes exam…
Browse files Browse the repository at this point in the history
…ple in doc spring-projects#12939
  • Loading branch information
Brummolix authored Mar 29, 2023
1 parent ce46f06 commit 373a569
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,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 373a569

Please sign in to comment.