seems we only support readTimeout for okhttp, Can we support readTimeout for FeignAutoConfiguration:HttpClientFeignConfiguration:httpClient?
I just noticed we actually have per-request-default options which override the httpClient-default value:
public Options() {
this(10, TimeUnit.SECONDS, 60, TimeUnit.SECONDS, true);
}
so I can use this as a workaround, but still want the httpClient level readTimeout :)