Ikhun Um
Ikhun Um
> However, after testing it, the issue persists. Could you provide a reproducer? I failed to reproduce the issue with `h1c`.
> What I observe is that when it happens, the amount of time between the request sent and when we get this exception is less than 10 milliseconds When the...
Given your reproducer, it seems HTTP/1 pipelining is disabled in your client. Is my understanding correct?
I didn't see that a fluent style is good for nested context paths in terms of API design. Users may find it difficult to know the current depth and parent...
> ```java > sb.baseContextPath("/api") > .contextPath("/context-path/a1", "/context-path/a2") > .nestedContext() > .contextPaths(Set.of("/b1", "/b2"), ctx1 -> ctx1 // ctx1 scope start (lambda function) > ``` Is it possible to build nested context...
Could you explain the difference between `contextPath()` and `contextPaths()`? The method names alone don't make it clear.
> This is fixed on kubernetes-client 7.2.0, but 7.x.x version requires Java 11 so upgrade is not possible for now. The current workaround is reasonable, but I prefer upgrading the...
> In kubernetes-client 7.3.0 ([fabric8io/[email protected] (release)](https://github.com/fabric8io/kubernetes-client/releases/tag/v7.3.0)), breaking change has introduced that Jackson >= 2.19.0 should be used. Let's upgrade kubernetes-client to 7.3.1 and Jackson to 2.19.1 together. Users will need...
I didn't know that Netty metrics were supported by Micrometer finally. I prefer automatically setting the metric for the default one (`ByteBufAllocator.DEFAULT`) when the `MoreMeterBinders` class is loaded.
I think my intention was not conveyed. Unlike when you first created this PR, Micrometer now supports Netty metrics. Let me add a commit to apply that.