mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-03-06 05:19:15 +00:00
Changed filter order numbers to start at zero (makes them more readable in log compared with large negative numbers)
This commit is contained in:
parent
4681ff3d50
commit
eeb14b3965
@ -17,7 +17,7 @@ public abstract class FilterChainOrder {
|
||||
* The first position at which a Spring Security filter will be found. Any filter with an order less than this will
|
||||
* be guaranteed to be placed before the Spring Security filters in the stack.
|
||||
*/
|
||||
public static final int FILTER_CHAIN_FIRST = Ordered.HIGHEST_PRECEDENCE + 1000;
|
||||
public static final int FILTER_CHAIN_FIRST = 0;
|
||||
private static final int INTERVAL = 100;
|
||||
private static int i = 1;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user