Skip to content

Commit 14b0429

Browse files
committed
fix(core): fix x-region namespace query (#3032)
1 parent b897d63 commit 14b0429

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/services/namespace/src/ops/resolve_for_name_global.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub async fn namespace_resolve_for_name_global(
3131
let client = client.clone();
3232
async move {
3333
let url = leader_dc.api_peer_url.join(&format!("/namespaces"))?;
34-
let res = client.get(url).query(&("name", &input.name)).send().await?;
34+
let res = client.get(url).query(&[("name", &input.name)]).send().await?;
3535

3636
let res = rivet_api_util::parse_response::<
3737
rivet_api_types::namespaces::list::ListResponse,

0 commit comments

Comments
 (0)