Skip to content
Closed
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
let client = client.clone();
move |mut cache, key| {
let leader_dc = leader_dc.clone();
let client = client.clone();

Check warning on line 31 in packages/services/namespace/src/ops/resolve_for_name_global.rs

View workflow job for this annotation

GitHub Actions / Rustfmt

Diff in /home/runner/work/engine/engine/packages/services/namespace/src/ops/resolve_for_name_global.rs
async move {
let url = leader_dc.api_peer_url.join(&format!("/namespaces"))?;
let res = client.get(url).query(&("name", &input.name)).send().await?;
let res = client.get(url).query(&[("name", &input.name)]).send().await?;

let res = rivet_api_util::parse_response::<
rivet_api_types::namespaces::list::ListResponse,
Expand Down
Loading