Fixed target.nodes config property. See #1599

This commit is contained in:
Patrik Nordwall 2012-01-17 08:44:46 +01:00
parent 0b9c8bd248
commit 0cf5c22eac
4 changed files with 8 additions and 8 deletions

View file

@ -69,7 +69,7 @@ The "app" in this case refers to the name of the ``ActorSystem``::
actor {
deployment {
/serviceA/retrieval {
remote = akka://app@10.0.0.1:2552”
remote = "akka://app@10.0.0.1:2552”
}
}
}
@ -106,10 +106,10 @@ This is also done via configuration::
actor {
deployment {
/serviceA/aggregation {
router = “round-robin”
router = "round-robin"
nr-of-instances = 10
routees {
nodes = [“akka://app@10.0.0.2:2552”, “akka://app@10.0.0.3:2552”]
target {
nodes = ["akka://app@10.0.0.2:2552", "akka://app@10.0.0.3:2552"]
}
}
}