archaius
archaius copied to clipboard
Library for configuration management API
Hey, there is a bug in `DynamicPropertyUdpater:134`: https://github.com/Netflix/archaius/blob/master/archaius-core/src/main/java/com/netflix/config/DynamicPropertyUpdater.java#L134 When `newValue` is not a String, but for instance `Integer` it throws `ClassCastException`
This is not a big deal, however `FixedDelayPollingScheduler` always creates a separate thread for polling if the configuration file changes even in the case this is not necessary. For example...
It won't render correctly with the space between the `]` and `(`.
Hi there, Using archaius-core version 0.7.3, I created a YAMLConfigurationSource myself to load the configuration from YAML file. In YAML, the List is support like this: ``` required: - appId...
See original issue. I'm of the high opinion that at least core configuration should not require logging otherwise you can't configure logging!!! This change adds a private logging facade for...
One of the reasons why my company has not switched over to Archaius 2 is that Archaius 2 core uses SLF4J (we have our own internal config library that [I...
Hi, We use both archaius & Jukito in our platform, and found that [this commit](https://github.com/Netflix/archaius/commit/ddaa674a4a4017f7cc94915e4db73d2c67940f3b) broke our tests. The symptom is that if you use a `Config` in one test,...
It is a great feature that archaius supports management over JMX. Though the list of operations which are possible over JMX is a little limited. Would it be possible to...
When looking at the implementation of PropertyWrapper, I've seen two potential issues for consumers of this API: * `PropertyWrapper` wraps a `DynamicProperty` (which is thread safe), but appears to not...
``` public interface AppSettings { String getHost(); } AppSettings settings = configProxyFactory.newProxy(AppSettings.class); settings.getHost(); // ok settings.toString(); // ok settings.hashCode(); // NoSuchMethodError settings.equals(settings); // NoSuchMethodError ```