Alex Zolotko
Alex Zolotko
> These are all requests generated by the CS, while responses are generated by the CP. It's vice versa. The function you return from `handleConnection` is supposed to handle requests...
@gianmarcoodorizzi Did you add it before or after `case _`?
@gianmarcoodorizzi The problem is in `import com.thenewmotion.ocpp.json.v1x.v16.HeartbeatReq`. Just remove it and it should be fine because there's `import messages.v1x._` already.
@gianmarcoodorizzi Ok, now I see where the problem comes from. `HeartbeatReq` is defined as `object`. This means that if you want to match it, you should either do ``` case...
@unkarjedy ~might be also related to https://github.com/sbt/sbt/issues/6628~ Never mind, that issue is invalid.
Keeping a class of annotation seems to be necessary to preserve `RuntimeVisibleAnnotations`. In my case, it's `-keep class scala.reflect.ScalaSignature { *; }`.
Another alternative: `Y` - `why?`
I'm observing a similar issue on a different project: ``` [cmake] Detecting compiler hash for triplet arm64-linux... [cmake] error: while detecting compiler information: [cmake] The log file content at "/tmp/vcpkg/buildtrees/detect_compiler/stdout-arm64-linux.log"...
> If you install Ninja, the error will probably go away ~Ninja is installed. The same build succeeds when vcpkg is switched from HEAD to the 2023.07.21 branch.~ Ok, I...
> So you have an aarch64 host, but no aarch64-linux-gnu-gcc executable in the PATH? Yes, that’s an alpine container image.