Build akka-bench-jmh with scala3 (#30682)

Co-authored-by: Renato Cavalcanti <renato@cavalcanti.be>
This commit is contained in:
Arnout Engelen 2021-09-16 09:22:32 +02:00 committed by GitHub
parent d20ebf8c78
commit 4fe93e85bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -97,7 +97,7 @@ class TypedActorBenchmark {
@Benchmark
@OperationsPerInvocation(totalMessages)
def echo(): Unit = {
Await.result(system.ask(Start), timeout)
Await.result(system.ask(Start(_)), timeout)
}
}