Skip to content

Commit

Permalink
Merge pull request #88 from KU-Taverse/fix/url
Browse files Browse the repository at this point in the history
[fix] url
  • Loading branch information
kamothi authored Oct 25, 2024
2 parents 54bd476 + d1e4a87 commit 3b157b0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public RoundRobinAllocator roundRobinAllocator(GameRoomClient1 client1, GameRoom
// 서버 주소 리스트를 직접 정의
// 나중에 서버 도메인 주소로 바꾸어야함
List<String> roomServers = Arrays.asList(
"ws://kutaverse.xyz/dis-game-service-1/game",
"ws://kutaverse.xyz/dis-game-service-2/game",
"ws://kutaverse.xyz/dis-game-service-3/game"
"wss://kutaverse.xyz/dis-game-service-1/game",
"wss://kutaverse.xyz/dis-game-service-2/game",
"wss://kutaverse.xyz/dis-game-service-3/game"
);
return new RoundRobinAllocator(roomServers, client1, client2, client3, objectMapper);
}
Expand Down

0 comments on commit 3b157b0

Please sign in to comment.