Martin Egri
Martin Egri
Here's what I've found so far: * Adding a custom decorator won't work for OPTIONS-requests as the routes are tried before the decorators come into play. * Overriding the `Main#defaultHandler`...
I've noticed a regression since 0.6.5 where the receiving host simply crashes with a 500 error. The change was introduced in https://github.com/com-lihaoyi/requests-scala/commit/dabd72858c3dde1762543ec9c215a2d874355e26. From what I've been able to read, there's...
`nativeLink` completes when LTO mode is "full" or "none". **Stacktrace** ``` [info] Linking (607 ms) [info] Discovered 663 classes and 3689 methods [info] Optimizing (debug mode) (568 ms) [info] Generating...
## Compiler version 3.2.0 ## Minimized code ```Scala package a: class Foo() private[this] object Foo import a.Foo @main def run() = val f = Foo() ``` ## Output ``` [error]...
## Compiler version 3.1.3. Seems to affect Scala 3+ in general ## Minimized code I tried minimising the issue by reimplementing the `DataTypeHint` interface and other dependencies but it wouldn't...
I recently noticed when doing a `divio project pull db ` that having the project directory mounted at /app in the database container is required for the script to succeed...
**Description** Every other minute the Kernel breaks and I have to kill it with the skull-button. So far this has happened on Scala 2.13 only; I haven't tried 2.12 much...
https://github.com/com-lihaoyi/os-lib/blob/56c38a23798f5c900a2583277b70604b4574999b/os/src/Model.scala#L237-L253 In particular the Note in the docstring is confusing. The parameter names could be better but that's an API change so I think clarifying the specific parameters in scaladoc...
## Compiler version 3.4.1 ## Minimized code ``` val Array(1: Byte) = Array[Byte](1) ``` https://scastie.scala-lang.org/jOpc8BDCQ7ufoAGjiycSRg 😏 ## Output (Warning) ``` pattern's type (1 : Int) does not match the right...
I am playing around with GraalVM 21 which is not yet available in the Coursier index.json. To work around this I've added a `oracle-index.json` at the project root with the...