Skip to content

Commit bb472db

Browse files
committed
chore: if they do not have latency checks just let them queue
1 parent 920340f commit bb472db

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/matchmaking/matchmaking.gateway.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ export class MatchmakingGateway {
145145
if (game_server_nodes_aggregate.aggregate.count !== 0) {
146146
checkLatency = true;
147147
if (Object.keys(latencyResults).length === 0) {
148-
throw new JoinQueueError("Unable to get latency results");
148+
this.logger.warn("Unable to get latency results, skipping latency check");
149+
checkLatency = false;
149150
}
150151
}
151152

0 commit comments

Comments
 (0)