**Describe the bug** I have 2 implementations of `ResponseInterceptor`, both fail to trigger in `4.1.0`. If I remove one of them, then it works. ``` @Component public class AuditorGatewayResponseInterceptor implements ResponseInterceptor { //// removed } ``` ``` @Component public class AnotherResponseInterceptor implements ResponseInterceptor { //removed } ```