Michael Kressibucher
Michael Kressibucher
Thanks a lot for the feedback and the shared example! I will have a closer look at it within the next couple of days.
We have started seeing this issue reliably in an application which is regularly under high load. I hope following logs with `ResourceLeakDetector.setLevel(ADVANCED)` can help to localize the cause. 2023-02-26T19:13:29.268852707Z -...
The impact of this issue remains a consistent problem in several applications. Since no resolutions is in sight, we intend to switch over to JDBC for the meantime and wrap...
Leaks do occur in integration tests as well. At random locations though. :sweat_smile: - 1st run: https://github.com/kressi/r2dbc-postgresql/actions/runs/6441233862/job/17490851309#step:4:2666 - 2nd run: no leak - 3rd run: https://github.com/kressi/r2dbc-postgresql/actions/runs/6441233862/job/17490934943#step:4:919
Thank you, this fixed my problem. I just realised, also with pull request https://github.com/n1k0/SublimeHighlight/pull/53/files the issue will no longer occur.
> The CI failure is unrelated, this will need a rebase post #86180 merge. @webknjaz Now FreeBSD is failing
@bcoca changelog entry added and CI passes, is it all good now?
Created https://github.com/vavr-io/vavr/pull/3098 to illustrate how nullness checks could look on `Option`. With nullness annotations, users will be warned about potential issues with following code. ```java Option optionA = Option.of("").flatMap(__ ->...
Yes, assuming 1.0.0 targets Java 17+, this would make sense. Plugin configuration can be shared across Java versions starting with Java 17 and NullMarked annotations will work properly. Is there...
@pivovarit thank you, I appreciate you quickly taking care of `@NonNull` annotations already for v0.11.0. ❤️ - Should we also annotate return type `@NonNull`? - The issue has been moved...