Guillaume Lederrey

Results 11 issues of Guillaume Lederrey

As far as I can see, it is possible to use regex as source (`myscripts/*.js`), but it does not recurse into subdirectories. My Javascript is really rusty, so I might...

Some streams were not closed properly in case of exceptions. This commit introduces a few try-with-resources to properly close them.

This shoudl help in the case where a server or a backend becomes unresponsive. The circuit breaker will open and no time will be wasted in trying to contact a...

The generated Maven pom.xml contains a compile dependency on jsr305. This dependency is only needed at compile time, but `compile` will drag it as a runtime dependency. This should be...

Up to now the code used (or abused) java.util.concurrent.TimeUnit. Duration is a better representation, which encapsulate the amount and the unit in a single class. Method using TimeUnit have been...

This creates a minimal .deb package that could be used to deploy just this jar to the system. This should help in deploying gelfj outside of java packaging. In my...