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 { actor {
deployment { deployment {
/serviceA/retrieval { /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 { actor {
deployment { deployment {
/serviceA/aggregation { /serviceA/aggregation {
router = “round-robin” router = "round-robin"
nr-of-instances = 10 nr-of-instances = 10
routees { target {
nodes = [“akka://app@10.0.0.2:2552”, “akka://app@10.0.0.3:2552”] nodes = ["akka://app@10.0.0.2:2552", "akka://app@10.0.0.3:2552"]
} }
} }
} }

View file

@ -124,10 +124,10 @@ This is also done via configuration::
actor { actor {
deployment { deployment {
/serviceA/aggregation { /serviceA/aggregation {
router = “round-robin” router = "round-robin"
nr-of-instances = 10 nr-of-instances = 10
routees { target {
nodes = [“akka://app@10.0.0.2:2552”, “akka://app@10.0.0.3:2552”] nodes = ["akka://app@10.0.0.2:2552", "akka://app@10.0.0.3:2552"]
} }
} }
} }

View file

@ -17,7 +17,7 @@ akka {
# at that node e.g. "akka://sys@host:port" # at that node e.g. "akka://sys@host:port"
remote = "" remote = ""
routees { target {
# A list of hostnames and ports for instantiating the children of a # A list of hostnames and ports for instantiating the children of a
# non-direct router # non-direct router