reibitto

Results 34 comments of reibitto

Yeah, this is a very large Play project with a lot of submodules. I'll have to pay attention to other projects and see if they also exhibit this issue. It...

Sure. Here's the full command that it's using: `C:\sdk\graalvm-jdk-21+35.1\bin\java.exe" -Dfile.encoding=UTF-8 -Dscala.ext.dirs="C:\Users\me\.sbt\1.0\java9-rt-ext-oracle_corporation_21" -Xmx6G -XX:MaxMetaspaceSize=3G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -Dplay.server.akka.illegal-response-header-value-processing-mode=ignore -Duser.timezone=UTC -Dsun.net.maxDatagramSockets=256 -Dsbt.io.implicit.relative.glob.conversion=allow --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.util.concurrent=ALL-UNNAMED --add-opens=java.base/java.math=ALL-UNNAMED -cp "C:\Users\me\AppData\Local\Coursier\cache\arc\https\github.com\sbt\sbt\releases\download\v1.9.6\sbt-1.9.6.zip\sbt\bin\sbt-launch.jar" xsbt.boot.Boot`

This is still an ongoing problem for me that happens a few times a day. I recently got YourKit so I decided to try it out and see if it...

Our project currently requires JDK 21 but changing a bit of code to support JDK 17 should be feasible if necessary. I'll try Temurin JDK first and see if the...

Hmm, I'm not sure what that one failure is. It passed once before. Are the tests known to be a bit flaky?

This is partially addressed with the recent tapir + Swagger integration.

Sorry for seeing this so late. I have quite a bit of free time upcoming so I can finally update some of my open source projects with that. I'll look...

I've found myself wanting a rule for this too. Restricting this to just String might be a little too much though? Primitive types seem mostly alright to me. I don't...

I don't think there's a definite answer, but I think you're right that `String`/`CharSequence` might be the "safest" default. I'm only bringing up the idea of customizable sets of types...

Oh, hmm, there might not be a built-in way of customizing rules. Sorry, I assumed there was. Using properties or something isn't exactly ideal... If there is no nice way...