Daniel Hoelbling-Inzko

Results 4 issues of Daniel Hoelbling-Inzko

Hi, I am really enjoying resilience4j so far and as a first step putting Bulkheads in place is really handy and useful. But especially when adding Bulkheads to an existing...

enhancement

@brian-brazil as discussed (a few years ago 🤣 ) here https://github.com/prometheus/client_java/issues/342 This PR adds the ability to all SimpleCollector instances to manipulate labels before they are processed. This allows users...

Apparently if labels are missing or a null value is supplied to a label the prometheus client will throw a `IllegalArgumentException`. Exceptions being thrown on the "hot" path with null...

I ran into a really nasty issue with `StartImmediately` and `.Do()`. Basically the following code will behave completely un-expected: ```go func main() { scheduler := gocron.NewScheduler(time.UTC) scheduler.Every(15 * time.Second).Do(func() {...