summaryrefslogtreecommitdiff
path: root/exes/rest/src/ratelimit_client/remote_hashring.rs
diff options
context:
space:
mode:
authorMatthieuCoder <matthieu@matthieu-dev.xyz>2023-01-03 00:14:27 +0400
committerMatthieuCoder <matthieu@matthieu-dev.xyz>2023-01-03 00:14:27 +0400
commit91a27342dbee8ca0478f862df93bf502337f4c6e (patch)
treeaf5f4818d300934d8c9ea14896fe756fea13d578 /exes/rest/src/ratelimit_client/remote_hashring.rs
parentc3e47ff0b1b06ff26830e78b7e37e212d1e47200 (diff)
add all in one binary
Diffstat (limited to 'exes/rest/src/ratelimit_client/remote_hashring.rs')
-rw-r--r--exes/rest/src/ratelimit_client/remote_hashring.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exes/rest/src/ratelimit_client/remote_hashring.rs b/exes/rest/src/ratelimit_client/remote_hashring.rs
index b9f7800..4e3fa06 100644
--- a/exes/rest/src/ratelimit_client/remote_hashring.rs
+++ b/exes/rest/src/ratelimit_client/remote_hashring.rs
@@ -34,7 +34,7 @@ impl Hash for VNode {
impl VNode {
pub async fn new(address: String) -> Result<Self, tonic::transport::Error> {
- let client = RatelimiterClient::connect(format!("http://{}:8080", address.clone())).await?;
+ let client = RatelimiterClient::connect(format!("http://{}:8093", address.clone())).await?;
Ok(VNode { client, address })
}