diff --git a/.github/workflows/scala3-build.yml b/.github/workflows/scala3-build.yml index a892c20c85..f7b9196fdc 100644 --- a/.github/workflows/scala3-build.yml +++ b/.github/workflows/scala3-build.yml @@ -21,6 +21,7 @@ jobs: command: - akka-testkit/test akka-actor-tests/test - akka-actor-testkit-typed/test akka-actor-typed-tests/test + - akka-bench-jmh/test - akka-cluster/Test/compile akka-cluster-tools/test akka-distributed-data/test - akka-coordination/test - akka-discovery/test diff --git a/akka-bench-jmh/src/main/scala/akka/actor/typed/TypedActorBenchmark.scala b/akka-bench-jmh/src/main/scala/akka/actor/typed/TypedActorBenchmark.scala index a335b0a9f6..158f40cc3e 100644 --- a/akka-bench-jmh/src/main/scala/akka/actor/typed/TypedActorBenchmark.scala +++ b/akka-bench-jmh/src/main/scala/akka/actor/typed/TypedActorBenchmark.scala @@ -97,7 +97,7 @@ class TypedActorBenchmark { @Benchmark @OperationsPerInvocation(totalMessages) def echo(): Unit = { - Await.result(system.ask(Start), timeout) + Await.result(system.ask(Start(_)), timeout) } }