I have following service:
@FeignClient(name = "person", fallback = FeignHystrixFallback.class)
public interface PersonService {
@RequestMapping(value = "/find", method = RequestMethod.GET)
Person findPerson(@RequestParam("name") String name);
}
How to change the default timeout and thread pool size?