cluster: Upgrade iroh to 0.95.1

This commit is contained in:
ppom 2026-01-19 12:00:00 +01:00
commit 615d721c9a
No known key found for this signature in database
3 changed files with 536 additions and 821 deletions

1346
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -16,7 +16,7 @@ tokio.features = ["rt-multi-thread"]
treedb.workspace = true
data-encoding = "2.9.0"
iroh = { version = "0.94.0", default-features = false }
iroh = { version = "0.95.1", default-features = false }
rand = "0.9.2"
[dev-dependencies]

View file

@ -86,16 +86,7 @@ impl EndpointManager {
}
};
let remote_id = match connection.remote_id() {
Ok(id) => id,
Err(err) => {
eprintln!(
"ERROR cluster {}: could not retrieve peer's id: {err}",
self.cluster_name
);
return Break::No;
}
};
let remote_id = connection.remote_id();
match self.connections_tx.get(&remote_id) {
None => {