Describe the bug Please provide details of the problem, including the version of Spring Cloud that you are using.

Sample If possible, please provide a test case or sample application that reproduces the problem. This makes it much easier for us to diagnose the problem and to verify that we have fixed it.

Comment From: Alok86JavaPro

@Bean(name = "feignBuilderGSS") @Scope("prototype") public Feign.Builder feignBuilderGSS() throws NoSuchAlgorithmException, KeyManagementException { Builder builder = Feign.builder(); // if (!TenantServiceRunner.isLocal()) { LOGGER.debug("qualifier in feignBuilderGSS"); if(LOGGER.isDebugEnabled()) builder.logLevel(feign.Logger.Level.FULL); builder.client(feignClient()); // builder.requestInterceptor(new FeignClientHeaderInterceptor()); List interceptors = new ArrayList<>(); interceptors.add(new FeignClientHeaderInterceptor()); builder.requestInterceptors(interceptors); builder.build(); // } return builder; }

Comment From: Alok86JavaPro

Above code what I am using to add requestIntwrceptor

Comment From: Alok86JavaPro

But that is not working

Comment From: ryanjbaxter

Please learn how to format code on GitHub.

Can you provide a complete, minimal, verifiable sample that reproduces the problem? It should be available as a GitHub (or similar) project or attached to this issue as a zip file.

Comment From: spring-projects-issues

If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed.

Comment From: spring-projects-issues

Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue.