Skip to content

Commit

Permalink
fix: sleep 관련 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
david-parkk committed Sep 27, 2024
1 parent 599205c commit 6026a05
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ public void matchPlayers() throws InterruptedException {
WebSocketMessage webSocketMessage = webSocketSession.textMessage(tagGameMatchResponse.toString());
webSocketSession.send(Mono.just(webSocketMessage)).subscribe();
}
Thread.sleep(5000);
tagGameUserService.initialize(players, tagger, integerList);
Thread.sleep(5000);

createGameRoom(gameRoom, players);

} else {
Expand Down

0 comments on commit 6026a05

Please sign in to comment.