Skip to content

Commit

Permalink
deps: update p2p lib for fixing alias issue (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
giangndm authored Nov 11, 2024
1 parent 36b3d6a commit 58298e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
]

[workspace.dependencies]
p2p = { package = "atm0s-small-p2p", version = "0.1.0" }
p2p = { package = "atm0s-small-p2p", version = "0.2.0" }
protocol = { path = "crates/protocol", package = "atm0s-reverse-proxy-protocol", version = "0.3.0" }
protocol-ed25519 = { path = "crates/protocol_ed25519", package = "atm0s-reverse-proxy-protocol-ed25519", version = "0.1.4" }

Expand Down Expand Up @@ -36,7 +36,7 @@ url = "2.5"
base64 = "0.22"
local-ip-address = "0.6"
derive_more = "1.0"
thiserror = "1.0"
thiserror = "2.0"
anyhow = "1.0"
parking_lot = "0.12"
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion bin/relayer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ where

let mut sdn_alias = AliasService::new(sdn.create_service(ALIAS_SERVICE.into()));
let sdn_alias_requester = sdn_alias.requester();
tokio::spawn(async move { while sdn_alias.recv().await.is_ok() {} });
tokio::spawn(async move { while sdn_alias.run_loop().await.is_ok() {} });
let sdn_proxy_service = sdn.create_service(PROXY_TO_AGENT_SERVICE.into());
let sdn_tunnel_service = sdn.create_service(TUNNEL_TO_CLUSTER_SERVICE.into());
let tunnel_service_ctx = TunnelServiceCtx {
Expand Down

0 comments on commit 58298e6

Please sign in to comment.