Skip to content

Commit

Permalink
allow 10s for matchmaker. needs to be a websocket that streams progre…
Browse files Browse the repository at this point in the history
…ss really
  • Loading branch information
RJ committed Oct 15, 2024
1 parent 34d5888 commit 59f64f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Clients wishing to connect to the game make a request to our matchmaker service,
(the gameserver ip+port will be a machine controlled by Edgegap, running your game server's docker image)
* Deletes edgegap sessions when clients disconnect, by watching `active_connections` in NATS KV

### bevygap_httpd
### bevygap_matchmaker_httpd

An http endpoint to make "i want to play" requests to the matchmaker.
The matchmaker itself only exposes a service to NATS, not http.
Expand Down
2 changes: 1 addition & 1 deletion bevygap_matchmaker/src/session_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ async fn session_responder(
break;
}

if tries > 25 {
if tries > 50 {
return Err(EdgegapError::Io(std::io::Error::new(
std::io::ErrorKind::Other,
"session not ready timeout on tries",
Expand Down

0 comments on commit 59f64f5

Please sign in to comment.