Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(torii-graphql): move away from external url #2753

Merged
merged 4 commits into from
Dec 3, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fmt
  • Loading branch information
Larkooo committed Dec 3, 2024
commit 68400816783a4444aa8cb9b793ba74f514550bb5
3 changes: 1 addition & 2 deletions bin/torii/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,7 @@ async fn spawn_rebuilding_graphql_server(

loop {
let shutdown_rx = shutdown_tx.subscribe();
let (new_addr, new_server) =
torii_graphql::server::new(shutdown_rx, &pool).await;
let (new_addr, new_server) = torii_graphql::server::new(shutdown_rx, &pool).await;

tokio::spawn(new_server);

Expand Down
Loading