Closed amitga closed 5 years ago
At: https://github.com/amenezes/config-client#using-standard-client It is stated that get_attribute method can be used:
get_attribute
# option 3: using get_attribute method config_client.config.get_attribute('spring.cloud.consul.port')
but config_client.config is a dictionary, and doesn't have that method. It should be fixed to:
config_client.config
# option 3: using get_attribute method config_client.get_attribute('spring.cloud.consul.port')
@amitga-rnd thanks for your observation.
The fixes will be available on next release.
At: https://github.com/amenezes/config-client#using-standard-client It is stated that
get_attribute
method can be used:but
config_client.config
is a dictionary, and doesn't have that method. It should be fixed to: