brharrington
brharrington
The javadocs for `CompositeConfig.addConfig` state: https://github.com/Netflix/archaius/blob/2.x/archaius2-api/src/main/java/com/netflix/archaius/api/config/CompositeConfig.java#L33 > The newly added configuration takes precedence over all previously added configurations. That doesn't match the comment for the class that states it depends...
When using FixedPollingStrategy it will keep retrying if the `syncInit` is true and the callback throws an exception. However, PollingDynamicConfig creates a runnable: ``` java 52 strategy.execute(new Runnable() { 53...
Would you consider making 2.x the default branch? (or moving 1.x to a separate branch and making 2.x the master branch) There is a 2.x release now and it is...
This test will fail if there is no `application.properties` file on the classpath: ``` java @Test public void getConfig() throws Exception { Guice.createInjector(new ArchaiusModule()).getInstance(Config.class); } ``` The module specifies `.withFailOnFirst(false)`,...
For some use-cases, it might be helpful to support a form of constant that could be used to set different values for each result of a group by. Example: ```...
This makes it easier to blend graphs with some history from the backend and fill in using a stream. As much as possible this should be compatible with the `v2.json`...
When running the release build we should automatically update the release assets so that the standalone jar is consistently available. Right now that is a manual process and is often...
The current [custom palettes](https://github.com/Netflix/atlas/wiki/Color-Palettes#custom) are just a list of colors. For some use-cases it would be convenient to be able to map some labels to a given color. Sample use-case:...
Currently users do a number of approaches, such as using `:get` and `:set` for named blocks: ``` meaningful_label, name,someMeasurement,:eq,:sum, :set, meaningful_label,:get ``` Or using `:drop` to have an arbitrary string...
When using multi-y it will choose the axis color based on the first line so there is a visual cue as to which axis corresponds to the data shown. In...