Fabian Fett

Results 75 issues of Fabian Fett

If an adopter already has a reference type that implements a `run()` method it is currently impossible to support ServiceLifecycle, even though the implementation works easily: ```swift extension MyExistingService: Service...

good first issue

The current documentation about Span.isRecording is: ``` /// Returns true if this `Span` is recording information like events, attributes, status, etc. var isRecording: Bool { get } ``` Does that...

area/documentation

On cancellation, merge currently does not yield all elements. This leads to situations in which the final elements of AsyncStreams are not forwarded to the user. This patch ensures, that...

v1.1

In the future we want to use Deque in RediStack. For this we need to add `swift-collections`. Since NIO already depends on DequeModule we don't really add an additional dependency...

semver-minor

Not ready to merge yet.

In #92, we added a `Histogram` that is generic over the observed type. This means that each `Histogram` was also carrying a generic argument. To make it easier to deal...

When I was using the Summary and Histogram type I noticed, that if I record a value for a metric with name and dimensions, the value is also recorded for...

bug 🐞
1 - triaged

Prometheus has a new experimental feature called Native Histograms. Native Histograms currently require export via deprecated protobufs, which is a bit weird. More info: - [PromCon EU 2022: Native Histograms...

I highly recommend testing your message decoder using the `ByteToMessageDecoderVerifier`. It will test your decoder implementation in multiple ways and ensure that you are doing the right thing. This will...