Skip to content

Commit

Permalink
Fix app.config typo
Browse files Browse the repository at this point in the history
  • Loading branch information
veblush committed Jul 13, 2016
1 parent 4cf3c44 commit 5f4cabc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/GameServer/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<hocon>
<![CDATA[
system {
name = ChatCluster
name = TicTacToe
runner {
default = [
{ port = 3001, roles = [ "GameTable", "UserTable", "GamePairMaker", [ "Game", { port = 9021 } ], [ "User", { port = 9011 } ], [ "UserLogin", { port = 9001 } ] ] }
Expand All @@ -43,8 +43,8 @@
{ port = 3001, roles = [ "GameTable" ] }
{ port = 3002, roles = [ "UserTable" ] }
{ port = 3003, roles = [ "GamePairMaker" ] }
{ port = 3011, roles = [ [ "Game", { port = 9021 } ] ] }
{ port = 3012, roles = [ [ "Game", { port = 9022 } ] ] }
{ port = 3011, roles = [ [ "Game", { port = 9021 } ] ] }
{ port = 3012, roles = [ [ "Game", { port = 9022 } ] ] }
{ port = 3021, roles = [ [ "User", { port = 9011 } ] ] }
{ port = 3022, roles = [ [ "User", { port = 9012 } ] ] }
{ port = 3031, roles = [ [ "UserLogin", { port = 9001 } ] ] }
Expand All @@ -69,7 +69,7 @@
}
}
cluster {
seed-nodes = ["akka.tcp://ChatCluster@127.0.0.1:3001"]
seed-nodes = ["akka.tcp://TicTacToe@127.0.0.1:3001"]
auto-down-unreachable-after = 30s
}
}
Expand Down

0 comments on commit 5f4cabc

Please sign in to comment.