Peter Schrott
Peter Schrott
> I renamed `jvm_classes_loaded` to `jvm_classes_currently_loaded`. This will solve the issue. It will be rolled out with the next release. See [prometheus/client_java#681](https://github.com/prometheus/client_java/pull/681) @fstab are there plans for a release of...
Ran into the exact same issue. I get the same logs when using `curl` (`curl --request GET --url 'http://localhost:8080/hello?name=test'`), when using the generated swagger ui the warning turns into: ```...
UPDATE: I was actually wrong. Adding the netty configuration only fixes: ``` 11:28:51.922 [KQueueEventLoopGroup-2-1] WARN io.netty.bootstrap.ServerBootstrap - Unknown channel option 'SO_TIMEOUT' for channel '[id: 0x54df3e2f, L:/127.0.0.1:8080 - R:/127.0.0.1:54061]' ``` But:...
UPDATED: I just went back all the versions from 1.9.1 and found that this was introduced in v1.6.1 ([changes](https://github.com/softwaremill/tapir/compare/v1.6.0...v1.6.1)). With the custom netty settings, as proposed before, all warnings vanish...
@amorfis thanks for sharing your findings. I guess you are talking about `eventLoopConfig` not `eventGroupConfig`? I set the `eventLoopConfig` in `NettyConfig` as followed: ``` NettyConfig.default.eventLoopConfig(EventLoopConfig.nio) ``` but the warning regarding...