I created IClientConfig
@Bean
public IClientConfig ribbonClientConfig() {
final DefaultClientConfigImpl config =
DefaultClientConfigImpl.getClientConfigWithDefaultValues("my-service", "ribbon");
return config;
}
And I have in applications properties my-service.ribbon.ServerListRefreshInterval=211123
. However, Ribbon configuration doesn't pick this property up.