WhenusingFeignwithHystrixfallbacks,therearemultiplebeansinthe`ApplicationContext`ofthesametype.Thiswillcause`@Autowired`toworkbecausethereisn't exactly one bean, or one marked as primary. To work around this, Spring Cloud Netflix marks all Feign instances as `@Primary`, so Spring Framework will know which bean to inject. In some cases, this may not be desirable. To turn off this behavior set the `primary` attribute of `@FeignClient` to false.