mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-22 17:35:22 +00:00
This commit declares an `@Order` for the `ServerHttpObservationFilter` bean declaration in the Observation WebFlux auto-configuration. This allows developers to consistently order other `WebFilter` instances relatively to this one. Here, `@Order(Ordered.HIGHEST_PRECEDENCE + 1)` has been chosen to align with the order of its MVC counterpart. Fixes gh-33444