* Provide shorter aliases for the ActorRefProviders #20649 * Use the new actorefprovider aliases throughout code and docs * Cleaner alias replacement logic
21 lines
341 B
Text
21 lines
341 B
Text
akka {
|
|
actor {
|
|
provider = "cluster"
|
|
}
|
|
remote {
|
|
log-remote-lifecycle-events = off
|
|
netty.tcp {
|
|
hostname = "127.0.0.1"
|
|
port = 0
|
|
}
|
|
}
|
|
|
|
cluster {
|
|
seed-nodes = [
|
|
"akka.tcp://ClusterSystem@127.0.0.1:2551",
|
|
"akka.tcp://ClusterSystem@127.0.0.1:2552"]
|
|
|
|
auto-down-unreachable-after = 10s
|
|
}
|
|
}
|
|
|