Vasile Gorcinschi

Results 8 comments of Vasile Gorcinschi

Following-up, I _think_ that I've managed to address the first issue by excluding one transient dependency: ```scala "io.scalac" %% "mesmer-akka-extension" % "0.7.0" exclude (org = "com.fasterxml.jackson.module", name = "jackson-module-scala_2.13"), ```

For the second problem, could it be because `io.scalac.mesmer.core.model.Reporting` is expected to be packaged in `mesmer-akka_core_2.13` but that it is not included in `0.7.0`? ![Screen Shot 2022-08-23 at 11 50...

In our case unfortunately it is, with the following dependency configuration the app starts up: ```scala "io.scalac" %% "mesmer-akka-extension" % "0.8.0.RC1" exclude (org = "com.fasterxml.jackson.module", name = "jackson-module-scala_2.13"), ``` "Unfortunately"...

I've figured it out for the version part. It was code 18 🙂 . The thing is that I had another `otel.javaagent.extensions` line inside `otel.properties` file and that overrode what...

@lgajowy Could you please confirm that using the `0.8.0.RC1` version is currently expected? Or else did I messed-up with the setup?

Hey @lgajowy, thanks for following-up! `mailbox_size` would be of particular interest to us, yes. If you could cut a patch release (0.7.1) that would certainly be preferable then using a...

Still experiencing this issue when trying to mock a `RBucket[String]` (from redisson library) with scalamock version `5.2.0`, scala `2.13.10` and `specs2-core` `4.16.0`. In my case the suggested above workaround didn't...

I apologize for the delay with answer. Thank you for the answer. I managed to run it under JDK 8 and it worked until this moment: ``` final MyWebSocketServerBuilder serverBuilder...