Adam Gent

Results 165 comments of Adam Gent

Also when clients close connections most of them do not really do a good job. They sometimes pseudo close a connection in mid HTTP message/frame(/2). So the server isn't even...

I agree with @imeszaros on making Config library pluggable. I have done extensive testing on startup time for our code base and our microservices and the number one thing that...

@jknack > Oh got it. will check what vertx does and yes! would like to remove logging from core On removing SL4J take a look at Min log: https://github.com/EsotericSoftware/minlog I'm...

> we need to add a new contract/abstraction for each of them... which I don't like it. We kind of already have it: [Value](https://www.javadoc.io/doc/io.jooby/jooby/latest/io/jooby/Value.html) and Environment.getProperty. Another alternative is Microprofile...

> Configuration over network is an over kill... You can't read a property and save it in a String (which is the minimal basic/use case). Instead you need a reference...

I also don’t have that much problem with SLF4J provided it isn’t kicked off on unit testing and that internal network logging isnt done with it (eg tight loop trace...

Hmm I guess you can kind of alter how lightbend Config loads with [ConfigLoadingStrategy](https://github.com/lightbend/config/blob/master/config/src/main/java/com/typesafe/config/ConfigLoadingStrategy.java). I remember looking to feed custom sources into lightbend config and had some issues a couple...

@jknack I was going to put in PR but determined there are several ways to solve this problem. For one I really wish the MessageEncoders could say "I cant encode...

Here is a work around for others: ```java class MediaTypeProducesMessageEncoder implements MessageEncoder { private Map encoders = new LinkedHashMap(); @SuppressWarnings("null") @Override public byte @Nullable [] encode( Context ctx, Object value)...

Anyway I'll try on my end modifying the plugin with a filter of excluding files that aren't there.