Merge pull request #29323 from akka/wip-test-ser-conf-patriknw

This commit is contained in:
Renato Cavalcanti 2020-06-29 15:56:14 +02:00 committed by GitHub
commit e8e43be3fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,12 +76,14 @@ class ActorSystemSpec
akka.remote.artery.canonical.port = 0
akka.remote.artery.canonical.hostname = 127.0.0.1
serializers {
test = "akka.cluster.typed.ActorSystemSpec$$TestSerializer"
akka.actor {
serializers {
test = "akka.cluster.typed.ActorSystemSpec$TestSerializer"
}
serialization-bindings {
"akka.cluster.typed.ActorSystemSpec$$TestMessage" = test
"akka.cluster.typed.ActorSystemSpec$TestMessage" = test
}
}
""")
def system[T](behavior: Behavior[T], name: String) = ActorSystem(behavior, name, config)
def suite = "adapter"