Skip to content

Commit

Permalink
Issue #420 Set a deterministic order in the resolved list so math is …
Browse files Browse the repository at this point in the history
…correct in the assert
  • Loading branch information
jeanouii authored and manovotn committed Feb 13, 2023
1 parent 0a7e039 commit 4f4c8fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

@Interceptor
@Aging(Speed.FAST)
@Priority(Interceptor.Priority.APPLICATION)
@Priority(Interceptor.Priority.APPLICATION + 300)
public class FastAgingInterceptor {

@AroundInvoke
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

@Interceptor
@Aging(Speed.SLOW)
@Priority(Interceptor.Priority.APPLICATION)
@Priority(Interceptor.Priority.APPLICATION + 100)
public class SlowAgingInterceptor {

@AroundInvoke
Expand Down

0 comments on commit 4f4c8fe

Please sign in to comment.